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 0c1d277 commit 20a2e98Copy full SHA for 20a2e98
.github/workflows/ci.yml
@@ -0,0 +1,43 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+ pull_request:
9
10
11
12
+jobs:
13
+ lint:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - uses: pnpm/action-setup@v2
18
+ - uses: actions/setup-node@v3
19
+ with:
20
+ node-version: lts/*
21
+ cache: pnpm
22
23
+ - name: Install
24
+ run: pnpm install
25
26
+ - name: Lint
27
+ run: pnpm run lint
28
29
+ typecheck:
30
31
32
33
34
35
36
37
38
39
40
41
42
+ - name: Typecheck
43
+ run: pnpm run typecheck
0 commit comments