Skip to content

Commit

Permalink
Change back to failing instead of warning message #29
Browse files Browse the repository at this point in the history
  • Loading branch information
sroertgen committed Mar 20, 2024
1 parent 16238cd commit 3261bee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
echo $validation_result
lines=$(echo "$validation_result" | wc -l )
# Correct validation has 4 lines of output
[[ ${lines} -eq 4 ]] || echo "::warning file=app.js,line=1,col=5,endColumn=7::Missing semicolon"
[[ ${lines} -eq 4 ]] || exit 1
done
validate-for-errors:
Expand Down

0 comments on commit 3261bee

Please sign in to comment.