We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93b8a91 commit 4fa4165Copy full SHA for 4fa4165
.github/workflows/playwright.yml
@@ -0,0 +1,13 @@
1
+jobs:
2
+ tests_e2e:
3
+ name: Run end-to-end tests
4
+ runs-on: ubuntu-latest
5
+ steps:
6
+ - uses: actions/checkout@v3
7
+ - uses: actions/setup-node@v3
8
+ - name: Install dependencies
9
+ run: npm ci
10
+ - name: Install playwright browsers
11
+ run: npx playwright install --with-deps
12
+ - name: Run tests
13
+ run: npx playwright test
0 commit comments