-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Data not showing in the SonarCloud dashboard is now fixed 🔧 - Implement SonarCloud task for test.yml and deploy.yml GitHub actions
- Loading branch information
1 parent
5d92cd9
commit 3ea156a
Showing
3 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# SonarQube properties | ||
sonar.projectKey=nhsuk-user-feedback-form | ||
sonar.organization=nhsdigital | ||
|
||
# Project language | ||
sonar.language=js | ||
|
||
# Encoding of the source code. Default is default system encoding | ||
sonar.sourceEncoding=UTF-8 | ||
|
||
# Add file exclusions | ||
sonar.exclusions=reports/** | ||
|
||
# Add coverage exclusions | ||
sonar.coverage.exclusions=**/*.config.js,**/coverage/**,**/*check-report.html | ||
|
||
# Adding the dependency-check parameter | ||
sonar.dependencyCheck.htmlReportPath=reports/dependency-check/dependency-check-report.html | ||
|
||
# Encoding of the source code. Default is default system encoding | ||
sonar.sourceEncoding=UTF-8 | ||
|
||
# Adding the coverage analysis parameter | ||
sonar.javascript.lcov.reportPaths=./coverage/lcov.info |