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 8c0de50 commit c06a22aCopy full SHA for c06a22a
.github/workflows/integration-test.yml
@@ -60,9 +60,8 @@ jobs:
60
working-directory: artifact
61
run: |
62
export SCA_RESULTS=`jq '.runs | map (.results | length) | add' sca.sarif`
63
- expectedScaResults=5
64
echo "Got $SCA_RESULTS from SCA"
65
- if [ "$SCA_RESULTS" != "$expectedScaResults" ]; then
+ if [ "$SCA_RESULTS" -eq 0 ]; then
66
echo "::error::Expected to have $expectedScaResults SCA results!"
67
exit 1
68
fi
0 commit comments