From 88c47e9150c4c86c25889f290062532a4f33bda7 Mon Sep 17 00:00:00 2001 From: Benjtalkshow Date: Sun, 31 May 2026 13:34:57 +0100 Subject: [PATCH] fix(ci): restore --with-deps on Playwright install PR #265 dropped --with-deps from the Playwright install step. Without it, fresh CI runners that don't have Chromium's system libs (fonts, shared libraries) cached will fail to launch the browser. Putting it back. --- .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 769790fe..15c78859 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,7 +94,7 @@ jobs: NEXT_PUBLIC_NATIVE_TOKEN_CONTRACT: ${{ secrets.NEXT_PUBLIC_NATIVE_TOKEN_CONTRACT || 'CDLZFC3SYJYDZT7K67VZ75HPJVIEUVNIXF47ZG2FB2RMQQVU2HHGCYSC' }} - name: Install Playwright Chromium - run: pnpm exec playwright install chromium + run: pnpm exec playwright install chromium --with-deps - name: Run E2E tests run: pnpm run test:e2e