File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4040 env :
4141 BROWSER : chrome-container
4242 NVD_API_KEY : ${{ secrets.NVD_API_KEY }}
43- run : mvn -V --color always -ntp clean verify -Pci -Powasp | tee maven.log
43+ 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
4448 - name : Extract pull request number
4549 uses : jwalton/gh-find-current-pr@v1
4650 id : pr
Original file line number Diff line number Diff line change 2525 with :
2626 maven-version : 3.9.11
2727 - name : Build and test with Maven
28- run : mvn -V --color always -ntp clean verify -Pci -Ppit -Pdepgraph | tee maven.log
28+ run : |
29+ mvn -V --color always -ntp clean verify -Pci -Ppit -Pdepgraph | tee maven.log
30+ if [ "${PIPESTATUS[0]}" != "0" ]; then
31+ exit 1;
32+ fi
2933 - name : Run Quality Monitor
3034 uses : uhafner/quality-monitor@v3
3135 with :
You can’t perform that action at this time.
0 commit comments