File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 26
26
run : npm ci --no-fund
27
27
- name : Run ESLint
28
28
run : npm run security:eslint
29
- continue-on-error : true
30
29
- name : Upload analysis results to GitHub
31
30
uses : github/codeql-action/upload-sarif@v2
31
+ if : success() || failure() # Run this step even if previous step failed.
32
32
with :
33
33
sarif_file : eslint-results.sarif
34
34
wait-for-processing : true
66
66
run : npm run test
67
67
- name : SonarCloud Scan
68
68
uses :
SonarSource/[email protected]
69
+ if : success() || failure() # Run this step even if previous step failed.
69
70
env :
70
71
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
71
72
SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
91
92
run : npm run test
92
93
- name : Upload coverage to Codecov
93
94
uses : codecov/codecov-action@v3
95
+ if : success() || failure() # Run this step even if previous step failed.
You can’t perform that action at this time.
0 commit comments