Skip to content

Commit

Permalink
chore: improve quality checks
Browse files Browse the repository at this point in the history
  • Loading branch information
guesant committed Jan 24, 2025
1 parent 4a74461 commit a7fbc08
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,16 @@ jobs:
- name: Require to pass static code check
run: |
git stash -u;
pnpm run -w code-static:check;
git stash pop;
if [ `git stash list | wc -l` -gt 0 ]; then
git stash pop;
fi
- name: Require updated integrations
run: |
if [ `git status --porcelain=1 | wc -l` -ne 0 ]; then
git diff;
git status --porcelain=1;
exit 1;
fi
Expand Down

0 comments on commit a7fbc08

Please sign in to comment.