1 parent 0d75b55 commit 6c92151Copy full SHA for 6c92151
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
+ workflow_dispatch:
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Use Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: "24"
23
+ cache: "npm"
24
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
+ - name: Run lint
29
+ run: npm run lint
30
31
+ - name: Run typecheck
32
+ run: npm run typecheck
0 commit comments