Skip to content

Commit

Permalink
fix: audit
Browse files Browse the repository at this point in the history
  • Loading branch information
Tung-Huynh-Shopmacher committed Sep 6, 2024
1 parent f208a7a commit e9c5c6f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,14 @@ jobs:
- name: Run tests
run: npm run test

- name: Archive junit report
uses: actions/upload-artifact@v4
with:
name: junit-report
path: processor/junit-report.xml

- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: processor/junit-report.xml
path: processor/coverage/lcov.info
2 changes: 1 addition & 1 deletion .github/workflows/testrail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Download code coverage results
uses: actions/download-artifact@v4
with:
name: code-coverage-report
name: junit-report
github-token: ${{ github.token }}
run-id: ${{ github.event.workflow_run.id }}

Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ sonar.projectKey=Mollie-Connector
sonar.sources=processor/src
sonar.sourceEncoding=UTF-8
sonar.tests=processor/tests
sonar.javascript.lcov.reportPaths=processor/coverage/lcov.info
sonar.javascript.lcov.reportPaths=lcov.info

0 comments on commit e9c5c6f

Please sign in to comment.