Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sehyunc committed Sep 5, 2024
1 parent f6866de commit cf4d670
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.PKG_GITHUB_TOKEN }}

- name: Run linting, formatting check, and type checking
run: |
pnpm run lint &
pnpm prettier --check . &
pnpm run typecheck &
wait
- name: Run linting
run: pnpm run lint

- name: Run formatting check
run: pnpm prettier --check .

- name: Run type checking
run: pnpm run typecheck

0 comments on commit cf4d670

Please sign in to comment.