From 7942d3e9c9edb0c18eac16ef4d455e980645bbc4 Mon Sep 17 00:00:00 2001 From: Barcode Betty Date: Mon, 30 Mar 2026 19:39:34 +0000 Subject: [PATCH] fix(lighthouse): install Chromium system deps via --with-deps Playwright Chromium binary was missing libnspr4.so and other system libraries. Use `npx playwright install --with-deps chromium` to install Chromium along with all required system dependencies. Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57eb8d8..49b1ab5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: - name: Install Chromium for Lighthouse run: | npm install -g playwright - npx playwright install chromium + npx playwright install --with-deps chromium - name: Run Lighthouse CI run: | CHROME_PATH=$(find /home/runner/.cache/ms-playwright -name chrome -type f 2>/dev/null | head -1)