We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48b08ac commit 3868df7Copy full SHA for 3868df7
.github/workflows/build.yaml
@@ -26,7 +26,9 @@ jobs:
26
run: pnpm install
27
28
- name: Type check project
29
- run: pnpm run type-check
+ run:
30
+ pnpm run type-build
31
+ pnpm run type-check
32
33
- name: Lint and check formatting
34
run: pnpm run check
package.json
@@ -254,6 +254,7 @@
254
"lint": "biome lint",
255
"format": "biome format",
256
"check": "biome check",
257
+ "type-build": "tsc --build",
258
"type-check": "tsc --noEmit",
259
"build-js": "node ./esbuild.mjs",
260
"prod-js": "cross-env NODE_ENV=production node ./esbuild.mjs",
0 commit comments