From 5b06044512a6ecf562cd82ac816e068cbe7d212a Mon Sep 17 00:00:00 2001 From: Elliot Murphy Date: Sun, 22 Dec 2024 11:02:23 -0500 Subject: [PATCH] build(ci.yml): npm install @playwright/test before browsers --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 13ec34fc..bafd946b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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: