fix: run backend coverage from repo root, not frontend dir
Some checks failed
CI / Lint, type check, unit tests, coverage (push) Failing after 1m41s
CI / E2E browser tests (push) Failing after 2s

- 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/
This commit is contained in:
Joakim Mörling 2026-05-19 16:41:30 +02:00
parent b41124b141
commit e4cfb873f0

View file

@ -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