We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bb7733 commit 04d0d1bCopy full SHA for 04d0d1b
.github/workflows/ci.yml
@@ -62,12 +62,10 @@ jobs:
62
- name: Install dependencies
63
run: npm ci
64
65
- - name: Run SonarQube analysis
66
- run: >
67
- ./mvnw clean verify sonar:sonar -P coverage
68
- --batch-mode
69
- --update-snapshots
70
- --no-transfer-progress
+ - name: Run SonarQube Analysis (Frontend)
+ run: |
+ npm install -g sonarqube-scanner
+ SONAR_TOKEN=${{ secrets.SONAR_TOKEN }} npx sonar-scanner
71
env:
72
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
73
0 commit comments