Skip to content

Commit

Permalink
feat: add typecheck to ci workflow (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
timkurvers authored Apr 8, 2024
1 parent bbb3dcb commit e592aa6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
pull_request:

jobs:
lint-and-test:
name: lint and test
lint-typecheck-and-test:
name: lint, typecheck and test
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -20,6 +20,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run typecheck
- run: npm test
env:
CI: true
Expand Down

0 comments on commit e592aa6

Please sign in to comment.