Use the standard $GITHUB_STEP_SUMMARY (Gitea 1.27 + act_runner 2.0.0) to surface on the run page what was previously buried in logs or download-only artifacts. All five quick wins from #136, reporting-only — no job's pass/fail gating changes.
Mutation scores — added the markdown reporter to each stryker-config.json; the mutation job concatenates each service's mutation-report.md into the summary (if: always()). Also reveals where make mutation stopped on a ratchet break.
Per-frontend tests — the 4 apps' test targets emit vitest JSON to test-output/{projectName}.json (Nx token interpolation); infra/vitest-summary.py renders a per-frontend table.
Per-service unit tests — make unit now writes TRX; infra/trx-summary.py renders a per-service table (service name derived from the services/<name>/ path, so domain shows, not big.tests).
e2e per-spec results — Playwright writes playwright-report.json; run-e2e-check.sh copies it out of the container (capturing the exit code first); infra/playwright-summary.py renders a per-spec table. Turns a red e2e into a one-glance "which spec".
verify-stack check table — each live-stack check has an id; a final if: always() step tabulates each check's ✅/❌/⏭️.
Every summary write is guarded with [ -n "${GITHUB_STEP_SUMMARY:-}" ], so it no-ops on an unsupported runner / locally.
New helper scripts are stdlib-only Python, matching the existing infra/*.py check scripts (no new dependency — a few lines of parsing rather than a test-logger package).
TestResults/ and test-output/ gitignored.
This is also the first PR-run exercising the #135 verify-stack fix end to end.
Verified locally
make unit (TRX) ✓ · 4 apps' vitest JSON ✓ · ACL Stryker markdown report ✓ · all four parsers + the two summary shell blocks ✓ · ci.yaml + run-e2e-check.sh syntax ✓. The rendered summaries themselves only appear on the run page — this PR's CI run is the end-to-end check.
Definition of Done
Each item writes to $GITHUB_STEP_SUMMARY (guarded), renders on the run page.
No change to any job's pass/fail gating.
Conventional Commits referencing #136 (one per item + docs).
## What & why
Use the standard `$GITHUB_STEP_SUMMARY` (Gitea 1.27 + act_runner 2.0.0) to surface on the run page what was previously buried in logs or download-only artifacts. All five quick wins from #136, **reporting-only** — no job's pass/fail gating changes.
Closes #136
### Items
1. **Mutation scores** — added the `markdown` reporter to each `stryker-config.json`; the `mutation` job concatenates each service's `mutation-report.md` into the summary (`if: always()`). Also reveals where `make mutation` stopped on a ratchet break.
2. **Per-frontend tests** — the 4 apps' `test` targets emit vitest JSON to `test-output/{projectName}.json` (Nx token interpolation); `infra/vitest-summary.py` renders a per-frontend table.
3. **Per-service unit tests** — `make unit` now writes TRX; `infra/trx-summary.py` renders a per-service table (service name derived from the `services/<name>/` path, so `domain` shows, not `big.tests`).
4. **e2e per-spec results** — Playwright writes `playwright-report.json`; `run-e2e-check.sh` copies it out of the container (capturing the exit code first); `infra/playwright-summary.py` renders a per-spec table. Turns a red e2e into a one-glance "which spec".
5. **verify-stack check table** — each live-stack check has an `id`; a final `if: always()` step tabulates each check's ✅/❌/⏭️.
Docs: `gitea-actions-gotchas.md` §8 (version requirement + `$GITHUB_STEP_SUMMARY` guard + step-level `always()` note).
### Notes
- Every summary write is guarded with `[ -n "${GITHUB_STEP_SUMMARY:-}" ]`, so it no-ops on an unsupported runner / locally.
- New helper scripts are stdlib-only Python, matching the existing `infra/*.py` check scripts (no new dependency — a few lines of parsing rather than a test-logger package).
- `TestResults/` and `test-output/` gitignored.
- This is also the first PR-run exercising the #135 verify-stack fix end to end.
## Verified locally
`make unit` (TRX) ✓ · 4 apps' vitest JSON ✓ · ACL Stryker markdown report ✓ · all four parsers + the two summary shell blocks ✓ · `ci.yaml` + `run-e2e-check.sh` syntax ✓. The rendered summaries themselves only appear on the run page — this PR's CI run is the end-to-end check.
## Definition of Done
- [x] Each item writes to `$GITHUB_STEP_SUMMARY` (guarded), renders on the run page.
- [x] No change to any job's pass/fail gating.
- [x] Conventional Commits referencing #136 (one per item + docs).
- [x] CI green; summaries visible on the run.
- [x] Runbook note (gotchas §8).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
What & why
Use the standard
$GITHUB_STEP_SUMMARY(Gitea 1.27 + act_runner 2.0.0) to surface on the run page what was previously buried in logs or download-only artifacts. All five quick wins from #136, reporting-only — no job's pass/fail gating changes.Closes #136
Items
markdownreporter to eachstryker-config.json; themutationjob concatenates each service'smutation-report.mdinto the summary (if: always()). Also reveals wheremake mutationstopped on a ratchet break.testtargets emit vitest JSON totest-output/{projectName}.json(Nx token interpolation);infra/vitest-summary.pyrenders a per-frontend table.make unitnow writes TRX;infra/trx-summary.pyrenders a per-service table (service name derived from theservices/<name>/path, sodomainshows, notbig.tests).playwright-report.json;run-e2e-check.shcopies it out of the container (capturing the exit code first);infra/playwright-summary.pyrenders a per-spec table. Turns a red e2e into a one-glance "which spec".id; a finalif: always()step tabulates each check's ✅/❌/⏭️.Docs:
gitea-actions-gotchas.md§8 (version requirement +$GITHUB_STEP_SUMMARYguard + step-levelalways()note).Notes
[ -n "${GITHUB_STEP_SUMMARY:-}" ], so it no-ops on an unsupported runner / locally.infra/*.pycheck scripts (no new dependency — a few lines of parsing rather than a test-logger package).TestResults/andtest-output/gitignored.Verified locally
make unit(TRX) ✓ · 4 apps' vitest JSON ✓ · ACL Stryker markdown report ✓ · all four parsers + the two summary shell blocks ✓ ·ci.yaml+run-e2e-check.shsyntax ✓. The rendered summaries themselves only appear on the run page — this PR's CI run is the end-to-end check.Definition of Done
$GITHUB_STEP_SUMMARY(guarded), renders on the run page.🤖 Generated with Claude Code