From d40f477397b58859aa7537b073f083780c0fb901 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 12 May 2026 07:55:49 +0200 Subject: [PATCH] ci(coverage): include coverage log in artifact upload MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The birpc guard step writes to /tmp/coverage-test-.log and exits 1 when a race is detected. Without this file in the artifact, the evidence disappears when the runner tears down — only the exit code remained visible. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d72339c0..8c562674 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -60,7 +60,9 @@ jobs: uses: actions/upload-artifact@v4 with: name: coverage-reports - path: frontend/coverage/ + path: | + frontend/coverage/ + /tmp/coverage-test-${{ github.run_id }}.log - name: Build frontend run: npm run build