From 6e6633f540aaca82b67fc2354caf13aa20cadf9b Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 4 Feb 2025 21:47:09 +0100 Subject: [PATCH] test(ci): only install headless shell chromium This is all we need for playwright right now. https://playwright.dev/docs/browsers#chromium-headless-shell Signed-off-by: Max --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index b476e0fec..3ff1fce5e 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -44,7 +44,7 @@ jobs: TESTING=true npm run build --if-present - name: Install Playwright Browsers - run: npx playwright install --with-deps + run: npx playwright install chromium --with-deps --only-shell - name: Run Playwright tests run: npx playwright test