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 b976875 commit d700446Copy full SHA for d700446
.github/workflows/ci.yml
@@ -0,0 +1,40 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ ci:
13
+ runs-on: ${{ matrix.os }}
14
15
+ strategy:
16
+ matrix:
17
+ os: [ubuntu-latest]
18
+ node: [22]
19
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v4
23
24
+ - name: Install pnpm
25
+ uses: pnpm/action-setup@v4
26
27
+ - name: Install node
28
+ uses: actions/setup-node@v4
29
+ with:
30
+ node-version: ${{ matrix.node }}
31
+ cache: pnpm
32
33
+ - name: Install dependencies
34
+ run: pnpm install
35
36
+ - name: Lint
37
+ run: pnpm run lint
38
39
+ - name: Typecheck
40
+ run: pnpm run typecheck
0 commit comments