Skip to content

Commit

Permalink
fix: update lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmendes21 committed Jan 30, 2025
1 parent 2900b81 commit f8f31ec
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,15 @@ jobs:
- name: Install packages
run: yarn ci

- name: Run Build
run: yarn build

- name: Run eslint
run: yarn lint

- name: Run format
run: yarn format

- name: Check for uncommitted changes
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "❌ O código não está formatado corretamente. Rode 'yarn format' localmente e faça commit das mudanças antes de enviar a PR."
exit 1
fi

0 comments on commit f8f31ec

Please sign in to comment.