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 d7a6680 commit 0c5d88aCopy full SHA for 0c5d88a
.github/workflows/typecheck.yml
@@ -0,0 +1,24 @@
1
+name: Type check
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ typecheck:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: read
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v5
15
+ with:
16
+ persist-credentials: false
17
+ - name: Setup Node.js
18
+ uses: actions/setup-node@v4
19
+ - name: Setup pnpm
20
+ uses: pnpm/action-setup@v4
21
+ - name: Install dependencies
22
+ run: pnpm install --frozen-lockfile
23
+ - name: Run type check
24
+ run: pnpm exec tsc --noEmit
.node-version
@@ -0,0 +1 @@
+22
0 commit comments