From 53626785b35be902bc86eb3c3f93e3d1b3d7fc90 Mon Sep 17 00:00:00 2001 From: Timo K Date: Mon, 11 May 2026 18:22:58 +0200 Subject: [PATCH] install playwright for unit tests --- .github/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d8af6f92..3fca37a1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -22,6 +22,8 @@ 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 - name: Vitest run: "pnpm run test:coverage" - name: Upload to codecov