There was an error while loading. Please reload this page.
1 parent 4ec4f9d commit c9f1561Copy full SHA for c9f1561
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,37 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ typecheck:
11
+ name: Type Check
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: pnpm/action-setup@v4
16
+ with:
17
+ version: 9
18
+ - uses: actions/setup-node@v4
19
20
+ node-version: 20
21
+ cache: pnpm
22
+ - run: pnpm install --no-frozen-lockfile
23
+ - run: pnpm typecheck
24
25
+ build-example:
26
+ name: Build Example App
27
28
29
30
31
32
33
34
35
36
37
+ - run: cd example && pnpm install --no-frozen-lockfile && pnpm build
0 commit comments