diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 01fcffdf..7d78db77 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,9 +46,9 @@ jobs: npm ci - name: Install Playwright Browsers - uses: microsoft/playwright-github-action@v1 - with: - browsers: chromium + run: | + npx playwright install chromium + npx playwright install-deps chromium || true - name: Run tests run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 986da352..92aaa4d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,12 +25,12 @@ jobs: - name: Install dependencies run: | - npm ci --ignore-scripts + npm ci - name: Install Playwright Browsers - uses: microsoft/playwright-github-action@v1 - with: - browsers: chromium + run: | + npx playwright install chromium + npx playwright install-deps chromium || true - name: Build package run: |