Skip to content

Commit

Permalink
Import missing typecheck workflow (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick authored Mar 26, 2023
1 parent e2de8d4 commit a60d0c5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,20 @@ jobs:
- name: Prevent missing commits after compile
run: git add --intent-to-add . && git diff --exit-code

typecheck:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: install dependencies
run: npm ci --ignore-scripts
- name: Typecheck
run: npm run typecheck

lint:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit a60d0c5

Please sign in to comment.