Skip to content

Commit a2a58c2

Browse files
committed
Install Playwright dependencies
1 parent f06a6e1 commit a2a58c2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/e2e_tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15+
- name: Install dependencies
16+
run: |
17+
sudo apt-get update
18+
sudo apt-get install -y libwoff1
19+
1520
- uses: actions/checkout@v4
1621

1722
- uses: actions/setup-node@v4
@@ -31,6 +36,9 @@ jobs:
3136
- name: Install dependencies
3237
run: npm ci
3338

39+
- name: Install Playwright dependencies
40+
run: npx playwright install-deps
41+
3442
- name: Install Playwright and browsers unless cached
3543
run: npx playwright install --with-deps
3644
if: steps.cache-playwright.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)