Actualiser .github/workflows/ci.yml
Some checks failed
CI / lint (push) Successful in 43s
CI / test (push) Successful in 14m18s
CI / intent-service-test (push) Successful in 7m49s
CI / build (push) Successful in 1m57s
CI / e2e (push) Failing after 6m6s

This commit is contained in:
kyuno 2026-08-27 20:25:50 +02:00
parent f7aa696f55
commit 9ec9b82e06

View file

@ -159,7 +159,10 @@ jobs:
# download (see apps/web's cypress caveat in the README) — install it # download (see apps/web's cypress caveat in the README) — install it
# explicitly so `cypress run` finds it. # explicitly so `cypress run` finds it.
- run: pnpm --filter web exec cypress install - run: pnpm --filter web exec cypress install
- run: pnpm --filter web e2e - name: Run E2E tests
env:
HOST: "0.0.0.0"
run: pnpm --filter web e2e
# No dev server needed here — Cypress spins up its own Vite dev # No dev server needed here — Cypress spins up its own Vite dev
# server internally for component testing (see cypress.config.ts's # server internally for component testing (see cypress.config.ts's
# `component.devServer`), unlike `e2e` above which needs the real app # `component.devServer`), unlike `e2e` above which needs the real app