Skip to content

Commit 4fa4165

Browse files
committed
Playwright CI
1 parent 93b8a91 commit 4fa4165

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/playwright.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)