We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f89037 commit 4b4c551Copy full SHA for 4b4c551
1 file changed
.github/workflows/sonar-analysis.yml
@@ -30,12 +30,14 @@ jobs:
30
- name: Run Build Wrapper
31
run: build-wrapper-win-x86-64.exe --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} python gyp.config.py && node-gyp clean && node-gyp configure build
32
33
+ - run: ls ${{ env.BUILD_WRAPPER_OUT_DIR }}
34
+
35
- name: SonarQube Scan
36
uses: SonarSource/sonarqube-scan-action@v5
37
env:
38
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
39
with:
40
args: >
- --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}"
41
+ --define sonar.cfamily.compile-commands="${{ env.BUILD_WRAPPER_OUT_DIR }}/compile_commands.json"
42
43
0 commit comments