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 4831061 commit 1797c73Copy full SHA for 1797c73
.github/workflows/type-check.yml
@@ -0,0 +1,24 @@
1
+name: Type Check
2
+
3
+on:
4
+ push:
5
+ branches: ["**"]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ type-check:
14
+ name: TypeScript Type Check
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
19
20
+ - name: Setup
21
+ uses: ./.github/actions/setup
22
23
+ - name: Run type check
24
+ run: pnpm type-check
package.json
@@ -9,7 +9,8 @@
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
- "test": "vitest"
+ "test": "vitest",
+ "type-check": "tsc --noEmit"
},
"dependencies": {
"next": "16.0.2",
0 commit comments