ci: per-service unit test table in the run summary via TRX (refs #136)

This commit is contained in:
not
2026-07-24 14:05:59 +02:00
parent fcfb8bbae2
commit 80391b1730
4 changed files with 74 additions and 1 deletions
+6
View File
@@ -70,6 +70,12 @@ jobs:
restore-keys: |
nuget-${{ runner.os }}-
- run: make unit
# Job summary (#136): a per-service pass/fail table from the TRX `make unit` wrote.
- name: Unit test summary
if: always()
run: |
[ -n "${GITHUB_STEP_SUMMARY:-}" ] || exit 0
python3 infra/trx-summary.py TestResults >> "$GITHUB_STEP_SUMMARY"
# Frontend (Nx/Angular) lane: install with pnpm, then Nx lint + test + build.
frontend: