We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32772b3 commit ec57483Copy full SHA for ec57483
.github/workflows/ci.yml
@@ -0,0 +1,34 @@
1
+name: ci
2
+
3
+on: push
4
5
+jobs:
6
+ ci:
7
+ runs-on: ${{ matrix.os }}
8
9
+ strategy:
10
+ matrix:
11
+ os: [ubuntu-latest]
12
+ node: [22]
13
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
18
+ - name: Install pnpm
19
+ uses: pnpm/action-setup@v4
20
21
+ - name: Install node
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: ${{ matrix.node }}
25
+ cache: pnpm
26
27
+ - name: Install dependencies
28
+ run: pnpm install
29
30
+ - name: Lint
31
+ run: pnpm run lint
32
33
+ - name: Typecheck
34
+ run: pnpm run typecheck
0 commit comments