Skip to content

Commit 7ea6b82

Browse files
authored
chore(repo): ensure playwright deps installed (#32283)
Ensure playwright deps are installed in e2e matrix workflow
1 parent 4941173 commit 7ea6b82

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/e2e-matrix.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ jobs:
8080
run: brew install python-setuptools
8181

8282
- name: Install packages
83-
run: pnpm install --frozen-lockfile
83+
run: |
84+
pnpm install --frozen-lockfile
85+
pnpm playwright install --with-deps
8486
8587
- name: Homebrew cache directory path
8688
if: ${{ matrix.os == 'macos-latest' }}
@@ -182,7 +184,9 @@ jobs:
182184
bun-version: latest
183185

184186
- name: Install packages
185-
run: pnpm install --frozen-lockfile
187+
run: |
188+
pnpm install --frozen-lockfile
189+
pnpm playwright install --with-deps
186190
187191
- name: Cleanup
188192
if: ${{ matrix.os == 'ubuntu-latest' }}

0 commit comments

Comments
 (0)