Skip to content

Commit e9c5c6f

Browse files
fix: audit
1 parent f208a7a commit e9c5c6f

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,14 @@ jobs:
4141
- name: Run tests
4242
run: npm run test
4343

44+
- name: Archive junit report
45+
uses: actions/upload-artifact@v4
46+
with:
47+
name: junit-report
48+
path: processor/junit-report.xml
49+
4450
- name: Archive code coverage results
4551
uses: actions/upload-artifact@v4
4652
with:
4753
name: code-coverage-report
48-
path: processor/junit-report.xml
54+
path: processor/coverage/lcov.info

.github/workflows/testrail.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Download code coverage results
2424
uses: actions/download-artifact@v4
2525
with:
26-
name: code-coverage-report
26+
name: junit-report
2727
github-token: ${{ github.token }}
2828
run-id: ${{ github.event.workflow_run.id }}
2929

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ sonar.projectKey=Mollie-Connector
22
sonar.sources=processor/src
33
sonar.sourceEncoding=UTF-8
44
sonar.tests=processor/tests
5-
sonar.javascript.lcov.reportPaths=processor/coverage/lcov.info
5+
sonar.javascript.lcov.reportPaths=lcov.info

0 commit comments

Comments
 (0)