diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1460e78..0f457cd 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -290,8 +290,12 @@ jobs: echo "API ready at :3000" # Run the Phase 7 harness across both profiles; preserve its exit code, always kill the API. + # Call the pwa test:e2e script DIRECTLY (single pnpm layer) and append --reporter without a + # `--` separator: `pnpm test:e2e -- ` double-forwards the `--` into + # `playwright test -- `, where playwright treats --reporter as a test-file filter → + # "No tests found" (run #10). The filtered single-layer form forwards the flag cleanly. set +e - pnpm test:e2e -- --reporter=list,html + pnpm --filter @familysync/pwa test:e2e --reporter=list,html rc=$? kill "$API_PID" 2>/dev/null || true exit $rc