From e4cfb873f0f9cca99f391e335e2aa9c24693404d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20M=C3=B6rling?= Date: Tue, 19 May 2026 16:41:30 +0200 Subject: [PATCH] fix: run backend coverage from repo root, not frontend dir - Remove working-directory: frontend from coverage step - cd back to repo root for ./gradlew command, then cd frontend for npm - Gradle wrapper lives at repo root, not in frontend/ --- .forgejo/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index c3f55aa..a4b4382 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -50,9 +50,10 @@ jobs: - name: Coverage verification run: | + cd .. ./gradlew :backend:jacocoTestCoverageVerification + cd frontend npm run test:coverage - working-directory: frontend e2e: name: E2E browser tests