From 304a1d20f47e27973e4fdf7ff7f02b6218e6587c Mon Sep 17 00:00:00 2001 From: Adam Ladachowski Date: Fri, 6 Feb 2026 21:54:33 +0100 Subject: [PATCH] fix: install Playwright with system deps in CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e7f463..d70614d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,8 @@ jobs: - name: Install dependencies run: npm ci - - name: Install Playwright - run: npx playwright install webkit + - name: Install Playwright with dependencies + run: npx playwright install --with-deps webkit - name: Build run: npm run build