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 2626 run : npm ci --no-fund
2727 - name : Run ESLint
2828 run : npm run security:eslint
29- continue-on-error : true
3029 - name : Upload analysis results to GitHub
3130 uses : github/codeql-action/upload-sarif@v2
31+ if : success() || failure() # Run this step even if previous step failed.
3232 with :
3333 sarif_file : eslint-results.sarif
3434 wait-for-processing : true
6666 run : npm run test
6767 - name : SonarCloud Scan
6868 uses : SonarSource/sonarcloud-github-action@v1.6
69+ if : success() || failure() # Run this step even if previous step failed.
6970 env :
7071 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
7172 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
9192 run : npm run test
9293 - name : Upload coverage to Codecov
9394 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