We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fb4afd commit 0083c2bCopy full SHA for 0083c2b
.github/workflows/lint-and-format.yml
@@ -31,6 +31,9 @@ jobs:
31
- name: Install dependencies
32
run: pnpm install --frozen-lockfile
33
34
+ - name: Typecheck
35
+ run: pnpm typecheck
36
+
37
- name: Lint
38
run: pnpm lint
39
package.json
@@ -10,6 +10,7 @@
10
"fmt:fix": "biome format . --write",
11
"lint": "biome lint .",
12
"lint:fix": "biome lint . --write",
13
+ "typecheck": "tsc -p tsconfig.json --noEmit",
14
"build": "tsc -p tsconfig.json",
15
"with-logs": "pnpm exec tsx scripts/run-scenario.ts --",
16
"run:with-logs": "pnpm build && pnpm with-logs",
0 commit comments