Skip to content

Commit

Permalink
ci: run typecheck in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
schoero committed Nov 1, 2023
1 parent ed2aa31 commit 04a27f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- name: Lint
run: npm run lint:ci

- name: Typecheck
run: npm run typecheck

- name: Spellcheck
run: npm run spellcheck:ci

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
"spellcheck:ci": "npm run spellcheck -- --no-progress",
"test": "vitest --config ./vite.config.ts --threads=false",
"test:update": "npm run test -- --update --run",
"test:visual": "cross-env VISUAL=true npm run test -- --run"
"test:visual": "cross-env VISUAL=true npm run test -- --run",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=v13.6.0"
Expand Down

0 comments on commit 04a27f6

Please sign in to comment.