mirror of
https://github.com/element-hq/element-web
synced 2024-11-21 16:55:34 +03:00
Tweak sonarqube run (#8475)
This commit is contained in:
parent
f08f764f22
commit
2141b122f9
2 changed files with 2 additions and 3 deletions
4
.github/workflows/sonarqube.yml
vendored
4
.github/workflows/sonarqube.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue