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 15cd6a4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
name: code-coverage-report
github-token: ${{ github.token }}
run-id: ${{ github.event.workflow_run.id }}
path: processor/coverage/lcov.info

- name: Test
run: |
ls -la processor/coverage
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@master
Expand Down
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

0 comments on commit 15cd6a4

Please sign in to comment.