Skip to content

Commit

Permalink
ci: add verbosity for format check
Browse files Browse the repository at this point in the history
  • Loading branch information
JSPRH authored Apr 2, 2023
1 parent 0afd52d commit 02ef4ca
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ jobs:

- uses: nrwl/nx-set-shas@v3
- name: Check Formatting
run: npx nx format:check
run: |
if [[ $(npx nx format:check) ]]; then
npx prettier -w .
git diff --color | cat
exit 1
fi
- name: Lint
run: npx nx affected --target=lint --parallel=3

Expand Down

0 comments on commit 02ef4ca

Please sign in to comment.