From 63451b67b324819ed84e67e3341a13de91359233 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 22 May 2026 00:05:28 +0000 Subject: [PATCH] fix(ci): install firefox and webkit for full browser matrix CI only installed chromium while runDemo runs 36 projects across six browser families. Firefox and WebKit engines were missing, causing half of tests to fail with browserType.launch executable errors. Co-authored-by: Joshua Pendragon --- .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 b2df3da..c265d7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: run: bun install - name: Install Playwright browsers - run: bunx playwright install --with-deps chromium + run: bunx playwright install --with-deps chromium firefox webkit - name: Run e2e tests run: bun run runDemo