From 017b404f8ffa7cd52fbf9bdfb79b3ce53080b226 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 68ce1c14..bea38ca9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -66,7 +66,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