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 92780ab commit c9a1825Copy full SHA for c9a1825
.github/workflows/typecheck.yml
@@ -0,0 +1,25 @@
1
+---
2
+name: Typecheck
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+ pull_request:
9
10
+jobs:
11
+ typecheck:
12
+ runs-on: ubuntu-24.04
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 18.14.0
19
+ cache: npm
20
21
+ - name: Install dependencies
22
+ run: npm ci --no-audit
23
24
+ - name: Typecheck
25
+ run: npm run typecheck
0 commit comments