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 504b29c commit 546c454Copy full SHA for 546c454
.github/workflows/lint.yml
@@ -18,7 +18,7 @@ jobs:
18
- name: Check scores
19
shell: bash
20
run: |
21
- if [[ "90" -gt "${{ steps.analysis.outputs.total }}" ]]; then
22
- echo "Score is less then 90, please check the analysis report and resolve the issues"
+ if [[ "${{ steps.analysis.outputs.total }}" != "110" ]]; then
+ echo "Expected score 110, got ${{ steps.analysis.outputs.total }}, please check the analysis report and resolve the issues"
23
exit 1
24
fi
0 commit comments