Skip to content

Commit 8398bba

Browse files
committed
ci: add code linting step to CI workflow
- Add Biome linting check before type checking - Ensures code style and quality standards are enforced in CI - Runs on all Node.js versions in the test matrix
1 parent 57860b8 commit 8398bba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ jobs:
4141
run: |
4242
npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }}
4343
44+
- name: Lint code
45+
run: yarn lint
46+
4447
- name: Type check
4548
run: npx tsc --noEmit
4649

0 commit comments

Comments
 (0)