We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d607fb8 commit d95a549Copy full SHA for d95a549
.github/workflows/ci.yml
@@ -176,7 +176,7 @@ jobs:
176
ERR_MSGS+=("::warning ::Analyses endpoint '$ANALYSIS' was not available: $REASON") # use GitHub's warning syntax
177
done <<< `grep "FAILED.*\[" $LOGFILE | grep -v "%"` # get summary lines with failing tests, ignore progress lines
178
cat $LOGFILE
179
- for ERR_MSG in "${ERR_MSGS[@]}"; do; echo $ERR_MSG; done # flag errors
+ for ERR_MSG in "${ERR_MSGS[@]}"; do echo $ERR_MSG; done # flag errors
180
if [ $ERR_COUNT>0 ]; then; exit 1; fi # fail if there were any errors
181
- name: Setup Sauce Connect
182
uses: saucelabs/sauce-connect-action@v3.0.0
0 commit comments