From 8b21c614bc2169a937593bfa8ee80a11b1fcd198 Mon Sep 17 00:00:00 2001 From: Barcode Betty Date: Mon, 30 Mar 2026 19:14:48 +0000 Subject: [PATCH] fix(ci): install Chromium before running Lighthouse CI lhci autorun requires Chrome to be present on the runner. This was causing the lighthouse job to fail with "Chrome installation not found". Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d9e9b8..88d7d18 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,6 +71,8 @@ jobs: cache: npm - run: npm ci - run: npm run build + - name: Install Chromium + uses: browser-actions/chromium@v3 - name: Run Lighthouse CI run: | npm install -g @lhci/cli