Skip to content

Commit 9942e84

Browse files
authored
Merge pull request #2978 from modernweb-dev/fix/pipelines
fix: install Playwright as recommended
2 parents 12e525a + fb0ee5b commit 9942e84

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/verify-node.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ jobs:
3535
node-version: ${{ matrix.node-version }}
3636
cache: npm
3737

38-
- name: Install Playwright dependencies
39-
run: npx playwright install --with-deps
40-
4138
# Set up GitHub Actions caching for Wireit.
4239
- uses: google/wireit@setup-github-actions-caching/v2
4340

@@ -54,6 +51,9 @@ jobs:
5451
- name: Build specific packages for production
5552
run: npm run build:production
5653

54+
- name: Install Playwright dependencies
55+
run: npx playwright install --with-deps
56+
5757
- name: Test
5858
run: npm run test:node
5959

@@ -77,9 +77,6 @@ jobs:
7777
node-version: '20'
7878
cache: 'npm'
7979

80-
- name: Install Playwright dependencies
81-
run: npx playwright install --with-deps
82-
8380
# Set up GitHub Actions caching for Wireit.
8481
- uses: google/wireit@setup-github-actions-caching/v2
8582

@@ -93,5 +90,8 @@ jobs:
9390
- name: Build specific packages for production
9491
run: npm run build:production
9592

93+
- name: Install Playwright dependencies
94+
run: npx playwright install --with-deps
95+
9696
- name: Test
9797
run: npm run test:node

0 commit comments

Comments
 (0)