Skip to content

Commit

Permalink
Add Type check to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
djhi committed Apr 17, 2024
1 parent 72fe6ba commit 61022b4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ jobs:
run: npx @biomejs/biome lint src
- name: Format Check
run: npx @biomejs/biome format src
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js LTS
uses: actions/setup-node@v1
with:
node-version: '18.x'
- uses: bahmutov/npm-install@v1
- name: Typecheck
run: npx tsc
unit-test:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 61022b4

Please sign in to comment.