From fbb023946a695a766c5680a2171a489d7d69db66 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 23 Feb 2026 13:16:07 +0000 Subject: [PATCH] ci: run web auth and settings e2e in web pipeline Co-authored-by: Velik --- .github/workflows/ci-web.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci-web.yml b/.github/workflows/ci-web.yml index cfc6365d..82237697 100644 --- a/.github/workflows/ci-web.yml +++ b/.github/workflows/ci-web.yml @@ -47,6 +47,12 @@ jobs: - name: Test Web Client run: pnpm --filter @goodgo/web-client test + + - name: Install Playwright Chromium + run: pnpm --filter @goodgo/web-client exec playwright install --with-deps chromium + + - name: Run Web Client E2E (Auth + Settings) + run: pnpm --filter @goodgo/web-client exec playwright test e2e/auth.spec.ts e2e/settings.spec.ts --project=chromium - name: Build Web Client run: pnpm --filter @goodgo/web-client build