Skip to content

Commit

Permalink
ci: add formatter & linter stages
Browse files Browse the repository at this point in the history
  • Loading branch information
cyntler committed May 30, 2024
1 parent e8c4e23 commit 63960eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ jobs:
with:
node-version: ${{ env.NVMRC }}
- name: Install packages
run: npm i --legacy-peer-deps
run: npm i
- name: Check formatter
run: npm run prettier:check
- name: Check linter
run: npm run lint
- name: Check tests
run: npm run test
- name: Check build
Expand Down

0 comments on commit 63960eb

Please sign in to comment.