From ffe13214c10d7e1235f0f18913ce054d450aa376 Mon Sep 17 00:00:00 2001 From: rcholic Date: Sun, 21 Dec 2025 19:09:49 -0800 Subject: [PATCH] consistent workflow --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) 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: |