From ca8cf2a80a4b04bf2bec5027aa94347e5e530880 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 3d028f6..3e37b7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,6 +57,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