Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
CI: fix Playwright browser install
Browse files Browse the repository at this point in the history
  • Loading branch information
larabr committed Feb 28, 2024
1 parent 11a7a05 commit 6dd7f23
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,14 @@ jobs:
- name: Install browsers
if: steps.cache-playwright-browsers.outputs.cache-hit != 'true'
run: |
cd test/runtimes/browsers
npx playwright install --with-deps chromium
npx playwright install --with-deps firefox
- name: Install WebKit # caching not possible, external shared libraries required
run: npx playwright install --with-deps webkit
run: |
cd test/runtimes/browsers
npx playwright install --with-deps webkit
- name: Run browser tests
run: |
Expand Down

0 comments on commit 6dd7f23

Please sign in to comment.