Skip to content

Commit

Permalink
ci: build check is now quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniovazquezblanco committed May 16, 2024
1 parent e05adec commit 89d5bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: npm run build

- name: Check build status
run: git diff --exit-code && echo "No changes were found :)" || {echo "Changes found after build.\nPlease run \"npm run build\" and commit the changes in the dist directory."; exit 1}
run: git diff --exit-code --quiet && echo "No changes were found :)" || { echo -e "Changes found after build.\nPlease run \"npm run build\" and commit the changes in the dist directory."; exit 1; }

- name: Test
run: npm test
Expand Down

0 comments on commit 89d5bd5

Please sign in to comment.