We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1802725 commit 9343453Copy full SHA for 9343453
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches: [main]
6
+ push:
7
8
9
+jobs:
10
+ lint:
11
+ name: Lint
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 22
18
+ cache: npm
19
+ - run: npm ci
20
+ - run: npm run lint
21
22
+ typecheck:
23
+ name: Type Check
24
25
26
27
28
29
30
31
32
+ - run: npx tsc --noEmit
0 commit comments