Skip to content

Commit 5b06044

Browse files
committed
build(ci.yml): npm install @playwright/test before browsers
1 parent 9a57beb commit 5b06044

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
3030
if: (github.actor == 'dependabot-preview[bot]') || (github.actor == 'renovate[bot]')
3131
- name: Install playwright browsers
32-
run: npx playwright install --with-deps
32+
run: |
33+
npm install @playwright/test
34+
npx playwright install --with-deps
3335
- name: Cache Bazel
3436
uses: actions/cache@v3
3537
with:

0 commit comments

Comments
 (0)