Skip to content

Commit ead3bfc

Browse files
author
alexperez
committed
chore: add Playwright dependency installation step in deployment workflow
1 parent 1d919b1 commit ead3bfc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deployment.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
- uses: actions/setup-node@v1
2121
with:
2222
node-version: 16
23-
- uses: microsoft/playwright-github-action@v1
2423
- uses: actions/cache@v1
2524
with:
2625
path: ~/.npm
@@ -29,6 +28,8 @@ jobs:
2928
${{ runner.os }}-node-
3029
- name: Install dependencies
3130
run: npm ci
31+
- name: Install Playwright dependencies
32+
run: npx playwright install --with-deps
3233
- name: Run tests
3334
run: npm test
3435
test_win:
@@ -48,6 +49,8 @@ jobs:
4849
${{ runner.os }}-node-
4950
- name: Install dependencies
5051
run: npm ci
52+
- name: Install Playwright dependencies
53+
run: npx playwright install --with-deps
5154
- name: Run tests
5255
run: npm test
5356
tag:

0 commit comments

Comments
 (0)