Skip to content

Commit 6feb129

Browse files
committed
fix: update release workflow
1 parent 70d3f3a commit 6feb129

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
node: [18, 20, 22]
36+
os: [ubuntu-latest, windows-latest]
37+
node: [18, 20]
3738
steps:
3839
- name: Checkout code
3940
uses: actions/checkout@v4
@@ -44,6 +45,8 @@ jobs:
4445
cache: npm
4546
- name: Install dependencies
4647
run: npm ci
48+
- name: Install Playwright Browsers
49+
run: npx playwright install --with-deps chromium
4750
- name: Run tests
4851
run: npm run @ci:test
4952
- name: Report code coverage

0 commit comments

Comments
 (0)