Skip to content

Commit

Permalink
Add prettier, tsc and integration tests to build
Browse files Browse the repository at this point in the history
  • Loading branch information
mantoni committed Jul 28, 2024
1 parent bb7c71c commit 71b35f9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ jobs:
- name: Install
run: npm ci
- name: Lint
if: matrix.node-version == '22.x'
run: npm run lint
- name: Types
if: matrix.node-version == '22.x'
run: node_modules/.bin/tsc
- name: Prettier
if: matrix.node-version == '22.x'
run: npm run prettier:check
- name: Test
run: npm test
- name: Integration Tests
run: npm run test:integration

0 comments on commit 71b35f9

Please sign in to comment.