From bae26868320cfdb36e1a93c19d3e8130d0a139ae Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Fri, 10 Jul 2026 17:26:51 +0200 Subject: [PATCH] ci: drop duplicate chromium install in storybook job The job already runs 'playwright install --with-deps chromium' right after pnpm install; the second install step before the visual step re-downloaded the same browser for nothing. (S10) Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f733106..bb5a591 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -172,7 +172,5 @@ jobs: - name: Build Storybook run: pnpm --filter @repo/storybook build:storybook - run: pnpm test:stories - - name: Install Playwright browsers - run: pnpm exec playwright install chromium --with-deps - name: Visual regression run: pnpm test:visual