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 49ff784 commit 4de3045Copy full SHA for 4de3045
.github/workflows/quality-monitor-jenkins.yml
@@ -40,7 +40,11 @@ jobs:
40
env:
41
BROWSER: chrome-container
42
NVD_API_KEY: ${{ secrets.NVD_API_KEY }}
43
- run: mvn -V --color always -ntp clean verify -Pci -Powasp | tee maven.log
+ run: |
44
+ mvn -V --color always -ntp clean verify -Pci -Powasp | tee maven.log
45
+ if [ "${PIPESTATUS[0]}" != "0" ]; then
46
+ exit 1;
47
+ fi
48
- name: Extract pull request number
49
uses: jwalton/gh-find-current-pr@v1
50
id: pr
0 commit comments