Skip to content

Commit a779659

Browse files
committed
ci: fix playwright install
1 parent 8106481 commit a779659

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: pnpm install --frozen-lockfile
4848

4949
- name: Install Playwright Browsers
50-
run: pnpm dlx playwright install chromium
50+
run: pnpm -r exec playwright install chromium
5151

5252
- name: test
5353
run: pnpm test

.github/workflows/verify-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: pnpm install --frozen-lockfile
6565

6666
- name: Install Playwright Browsers
67-
run: pnpm dlx playwright install chromium
67+
run: pnpm -r exec playwright install chromium
6868

6969
- name: test
7070
run: pnpm test
@@ -91,7 +91,7 @@ jobs:
9191
run: pnpm install --frozen-lockfile
9292

9393
- name: Install Playwright Browsers
94-
run: pnpm dlx playwright install firefox
94+
run: pnpm -r exec playwright install firefox
9595

9696
- name: test
9797
run: pnpm test --browsers=firefoxHeadless --no-coverage
@@ -113,7 +113,7 @@ jobs:
113113
run: pnpm install --frozen-lockfile
114114

115115
- name: Install Playwright Browsers
116-
run: pnpm dlx playwright install webkit --with-deps
116+
run: pnpm -r exec playwright install webkit --with-deps
117117

118118
- name: test
119119
run: pnpm test --browsers=webkitHeadless --no-coverage

0 commit comments

Comments
 (0)