From 9ec9b82e0618d1d3c540b45ec4c1b69078e4f382 Mon Sep 17 00:00:00 2001 From: kyuno Date: Thu, 27 Aug 2026 20:25:50 +0200 Subject: [PATCH] Actualiser .github/workflows/ci.yml --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9163a6e..b34181d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,7 +159,10 @@ jobs: # download (see apps/web's cypress caveat in the README) — install it # explicitly so `cypress run` finds it. - 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 # server internally for component testing (see cypress.config.ts's # `component.devServer`), unlike `e2e` above which needs the real app