We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdfae80 commit d70715cCopy full SHA for d70715c
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ lint-and-build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v6
15
16
+ - uses: actions/setup-node@v5
17
+ with:
18
+ node-version: 22
19
+ cache: npm
20
21
+ - run: npm ci
22
23
+ - name: Lint
24
+ run: npm run lint
25
26
+ - name: Type check & build
27
+ run: npm run build
0 commit comments