We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79bc32d commit e282cd4Copy full SHA for e282cd4
.github/workflows/security.yml
@@ -58,13 +58,16 @@ jobs:
58
- uses: actions/checkout@v3
59
with:
60
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
61
+ - name: Test and coverage
62
+ run: npm run test:coverage
63
- name: SonarCloud Scan
64
uses: SonarSource/sonarcloud-github-action@v1.6
65
env:
66
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
67
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
68
- args:
69
+ args: >
70
-Dsonar.projectKey=jerone_eslint-plugin-angular-template-consistent-this
71
-Dsonar.organization=jerone
- -Dsonar.tests=tests/rules/
72
+ -Dsonar.tests=./tests/rules/
73
+ -Dsonar.javascript.lcov.reportPaths=./coverage/lcov.info
0 commit comments