Skip to content

Commit 68369a2

Browse files
Merge pull request #344 from github/copilot/sub-pr-343
Fix CI: install Playwright browsers after version bump
2 parents 55f506d + 7fa9de0 commit 68369a2

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)