Skip to content

Commit

Permalink
build(ci.yml): npm install @playwright/test before browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
statik committed Dec 22, 2024
1 parent 9a57beb commit 5b06044
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
if: (github.actor == 'dependabot-preview[bot]') || (github.actor == 'renovate[bot]')
- name: Install playwright browsers
run: npx playwright install --with-deps
run: |
npm install @playwright/test
npx playwright install --with-deps
- name: Cache Bazel
uses: actions/cache@v3
with:
Expand Down

0 comments on commit 5b06044

Please sign in to comment.