forked from NUWCDIVNPT/stig-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed project name/key for general usage
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -205,13 +205,13 @@ jobs: | |
uses: SonarSource/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret) | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Needed to push to SonarCloud | ||
with: | ||
# Additional arguments for the sonarcloud scanner | ||
projectBaseDir: ./api/source | ||
args: -Dsonar.projectKey=Matte22_stig-manager | ||
args: -Dsonar.projectKey=stig-manager | ||
-Dsonar.projectName=stig-manager-API | ||
-Dsonar.organization=stig-manager | ||
-Dsonar.projectName=Matte22_stig-manager-API | ||
-Dsonar.inclusions=**/*.js | ||
-Dsonar.exclusions=**/node_modules/**,**/coverage-report/** | ||
-Dsonar.javascript.lcov.reportPaths=./lcov.info | ||
|
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 |
---|---|---|
|
@@ -30,13 +30,13 @@ jobs: | |
uses: SonarSource/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret) | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Needed to push to SonarCloud | ||
with: | ||
projectBaseDir: ./client/src | ||
# Additional arguments for the sonarcloud scanner | ||
args: | ||
-Dsonar.projectKey=Matte22_stig-manager:client | ||
-Dsonar.projectName=Matte22_stig-manager-Client | ||
-Dsonar.projectKey=stig-manager:client | ||
-Dsonar.projectName=stig-manager-Client | ||
-Dsonar.organization=stig-manager | ||
-Dsonar.inclusions=**/*.js,**/*.html | ||
-Dsonar.exclusions=**/node_modules/** | ||
|