From 386ce1644719aabb2468698b6315443e0fe0ce10 Mon Sep 17 00:00:00 2001 From: Barcode Betty Date: Mon, 30 Mar 2026 19:18:34 +0000 Subject: [PATCH] fix(ci): install Chromium via playwright instead of missing action browser-actions/chromium@v3 does not exist. Switch to using npm install -g playwright && npx playwright install chromium. Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88d7d18..35f8822 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,9 @@ jobs: - run: npm ci - run: npm run build - name: Install Chromium - uses: browser-actions/chromium@v3 + run: | + npm install -g playwright + npx playwright install chromium - name: Run Lighthouse CI run: | npm install -g @lhci/cli