Skip to content

Commit 7fa9de0

Browse files
Fix CI: install Playwright browsers after npm install
Co-authored-by: francinelucca <40550942+francinelucca@users.noreply.github.com>
1 parent be78979 commit 7fa9de0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ jobs:
1818
uses: actions/setup-node@v3
1919
with:
2020
node-version: 22
21-
- name: npm install, build, and test
22-
run: |
23-
npm it
21+
- name: npm install
22+
run: npm install
23+
- name: Install Playwright browsers
24+
run: npx playwright install --with-deps chromium
25+
- name: npm test
26+
run: npm test
2427
env:
2528
CI: true

0 commit comments

Comments
 (0)