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 555ebdc commit 2f04426Copy full SHA for 2f04426
.github/workflows/ci.yml
@@ -0,0 +1,42 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
17
+ - name: Setup Node.js
18
+ uses: actions/setup-node@v4
19
+ with:
20
+ node-version: '24'
21
+ cache: 'pnpm'
22
23
+ - name: Setup pnpm
24
+ uses: pnpm/action-setup@v3
25
26
+ version: 10.20.0
27
+ run_install: false
28
29
+ - name: Install dependencies
30
+ run: pnpm install --frozen-lockfile
31
32
+ - name: Lint
33
+ run: pnpm lint
34
35
+ - name: Typecheck
36
+ run: pnpm typecheck
37
38
+ - name: Test
39
+ run: pnpm test
40
41
+ - name: Build
42
+ run: pnpm build
0 commit comments