Skip to content

Commit 0083c2b

Browse files
committed
add typecheck
1 parent 8fb4afd commit 0083c2b

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/lint-and-format.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
- name: Install dependencies
3232
run: pnpm install --frozen-lockfile
3333

34+
- name: Typecheck
35+
run: pnpm typecheck
36+
3437
- name: Lint
3538
run: pnpm lint
3639

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"fmt:fix": "biome format . --write",
1111
"lint": "biome lint .",
1212
"lint:fix": "biome lint . --write",
13+
"typecheck": "tsc -p tsconfig.json --noEmit",
1314
"build": "tsc -p tsconfig.json",
1415
"with-logs": "pnpm exec tsx scripts/run-scenario.ts --",
1516
"run:with-logs": "pnpm build && pnpm with-logs",

0 commit comments

Comments
 (0)