Tweak sonarqube run (#8475)

t3chguy/dedup-icons-17oct
Michael Telatynski 2022-05-03 14:46:38 +01:00 committed by GitHub
parent f08f764f22
commit 2141b122f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -8,6 +8,7 @@ jobs:
sonarqube:
name: SonarQube
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps:
- uses: actions/checkout@v2
with:
@ -17,7 +18,6 @@ jobs:
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
- name: Download Coverage Report
uses: actions/github-script@v3.1.0
if: github.event.workflow_run.conclusion == 'success'
with:
script: |
const artifacts = await github.actions.listWorkflowRunArtifacts({
@ -36,9 +36,9 @@ jobs:
});
const fs = require('fs');
fs.writeFileSync('${{github.workspace}}/coverage.zip', Buffer.from(download.data));
- name: Extract Coverage Report
run: unzip -d coverage coverage.zip && rm coverage.zip
if: github.event.workflow_run.conclusion == 'success'
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master

View File

@ -19,4 +19,3 @@ sonar.typescript.tsconfigPath=./tsconfig.json
sonar.javascript.lcov.reportPaths=coverage/lcov.info
sonar.coverage.exclusions=spec/*.ts
sonar.testExecutionReportPaths=coverage/test-report.xml
sonar.genericcoverage.unitTestReportPaths=coverage/test-report.xml