Remove outdated coverage reports if existing before tests
All checks were successful
Sonarqube Scanner / Build and analyze (push) Successful in 1m18s

This commit is contained in:
Florian Zumpe 2026-06-17 13:57:10 +02:00
parent 8df484e77e
commit 8fa62fe0c6

View File

@ -43,7 +43,9 @@ jobs:
API_PASSWORD: ${{ secrets.API_SECRET }}
run: |-
npm install -g c8;
test -s coverage/js/lcov.info || ( npm ci && npm run test:coverage )
rm -rf coverage/js;
npm ci;
npm run test:coverage;
- name: Run sonar-scanner
env: