fix(08-fix): WR-02 upload Playwright HTML report on harness failure

This commit is contained in:
Lucas Berger
2026-06-11 19:26:28 -04:00
parent b12e10d129
commit 44a9c307e2
+7 -1
View File
@@ -303,5 +303,11 @@ jobs:
uses: https://github.com/ChristopherHX/gitea-upload-artifact@v4 uses: https://github.com/ChristopherHX/gitea-upload-artifact@v4
with: with:
name: playwright-traces-${{ github.run_id }} name: playwright-traces-${{ github.run_id }}
path: apps/pwa/test-results/ # Upload BOTH the raw traces/screenshots/videos (test-results/) AND the
# navigable HTML report (playwright-report/, built by --reporter=list,html).
# Without the report dir the most useful triage artifact for a remote CI
# failure is built on every run and then discarded at runner teardown (WR-02).
path: |
apps/pwa/test-results/
apps/pwa/playwright-report/
retention-days: 14 retention-days: 14