Skip to content

Commit

Permalink
fix: chore: add build integrity check to ci/cd workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmendes21 committed Jan 31, 2025
1 parent 5b4fe7f commit 549cd74
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
- name: Install packages
run: yarn ci

- name: Checking build integrity
run: |
echo "checking build integrity"
yarn build
rm -rf dist
rm -rf coverage
- name: Run eslint
run: yarn lint

Expand Down
5 changes: 0 additions & 5 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

echo "checking build integrity"
yarn build
rm -rf dist
rm -rf coverage

0 comments on commit 549cd74

Please sign in to comment.