From 7b9194a15235ade820b087ba9b3fe535e0ff5bb8 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 3e37b7c..eb46767 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,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