We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f99c3e4 commit 852e352Copy full SHA for 852e352
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
+jobs:
10
+ build-test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
16
+ - name: Setup Node
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '24'
20
+ cache: 'npm'
21
22
+ - name: Install dependencies
23
+ run: npm install
24
25
+ - name: Typecheck
26
+ run: npm run typecheck
27
28
+ - name: Build
29
+ run: npm run build
30
31
+ - name: Test
32
+ run: npm test -- --run
0 commit comments