From 5bdbd80f371b5f8d77dd3233fe8c0d19eca432e2 Mon Sep 17 00:00:00 2001 From: Timo K Date: Mon, 11 May 2026 19:29:07 +0200 Subject: [PATCH] try storybook only --- .github/workflows/test.yaml | 6 +++--- vitest.config.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 96483af2..bb8ddcb5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,10 +23,10 @@ jobs: - name: Install dependencies # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present) run: "pnpm install --frozen-lockfile --ignore-pnpmfile" - - name: Install Playwright Browsers - run: pnpm exec playwright install --with-deps firefox + - name: Install Playwright Browser + run: pnpm exec playwright install --with-deps chromium - name: Vitest - run: "pnpm run test:coverage" + run: "pnpm run test:storybook" - name: Upload to codecov uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5 env: diff --git a/vitest.config.ts b/vitest.config.ts index 9e8b05cf..22b5e88a 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -45,7 +45,7 @@ export default defineConfig((configEnv) => // Make sure to install Playwright provider: playwright(), headless: true, - instances: [{ browser: "firefox" }], + instances: [{ browser: "chromium" }], }, }, },