We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c652a9b commit 2fcac86Copy full SHA for 2fcac86
.github/workflows/ci.yml
@@ -55,11 +55,11 @@ jobs:
55
run: |
56
eirctl run test:unit
57
58
- - name: Publish Junit style Test Report
59
- uses: mikepenz/action-junit-report@v3
60
- if: always() # always run even if the previous step fails
+ - name: Publish Test Report
+ uses: mikepenz/action-junit-report@v5
+ if: success() || failure()
61
with:
62
- report_paths: '**/report-junit.xml'
+ report_paths: '.coverage/report-junit.xml'
63
64
- name: Analyze with SonarCloud
65
uses: SonarSource/sonarqube-scan-action@v5
0 commit comments