File tree Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 13
13
"ignorePatterns" : [
14
14
// node_modules is implicitly always ignored
15
15
" dist" ,
16
+ " coverage" ,
16
17
" vite.config.mts" ,
17
18
" jest.config.ts" ,
18
19
" jest.setup.ts"
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ header:
19
19
- ' **/*.yaml'
20
20
- ' **/*.yml'
21
21
- ' **/*.svg'
22
+ - ' **/*.properties'
22
23
23
24
24
25
comment : on-failure
Original file line number Diff line number Diff line change 36
36
npm install
37
37
npm run licenses-check
38
38
npm run lint
39
- npm run test
39
+ npm run test:coverage
40
40
npm run build
41
+
42
+ - name : SonarCloud Scan
43
+ uses :
SonarSource/[email protected]
44
+ env :
45
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
46
+ SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
Original file line number Diff line number Diff line change
1
+ sonar.projectKey =gridsuite_commons-ui
2
+ sonar.organization =gridsuite
3
+ sonar.javascript.lcov.reportPaths =./coverage/lcov.info
You can’t perform that action at this time.
0 commit comments