2 parents c258028 + fb09fe9 commit 71f75a0Copy full SHA for 71f75a0
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: "26"
19
+ cache: "npm"
20
21
+ - name: Install dependencies
22
+ run: npm ci
23
24
+ - name: Lint
25
+ run: npm run lint
26
27
+ - name: Build
28
+ run: npm run build
0 commit comments