File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 4444 with :
4545 token : ${{ secrets.CODECOV_TOKEN }} # required
4646 verbose : true # optional (default = false)
47+
48+ - name : SonarCloud Scan
49+ uses : SonarSource/sonarcloud-github-action@master
50+ env :
51+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
52+ SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
Original file line number Diff line number Diff line change 1+ sonar.projectKey =sir-gon_algorithm-exercises-ts
2+ sonar.organization =sir-gon
3+
4+ # This is the name and version displayed in the SonarCloud UI.
5+ # sonar.projectName=algorithm-exercises-ts
6+ # sonar.projectVersion=1.0
7+
8+
9+ # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
10+ sonar.sources =src
11+ sonar.exclusions =**/*.json
12+
13+ # Encoding of the source code. Default is default system encoding
14+ sonar.sourceEncoding =UTF-8
15+
16+ # Coverage
17+ sonar.javascript.lcov.reportPaths =./coverage/lcov.info
You can’t perform that action at this time.
0 commit comments