We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aba9021 + 2d4e5f9 commit 835b750Copy full SHA for 835b750
6 files changed
.github/workflows/ci.yml
@@ -0,0 +1,40 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
+permissions:
9
+ contents: read
10
11
+concurrency:
12
+ group: ci-${{ github.ref }}
13
+ cancel-in-progress: true
14
15
+jobs:
16
+ ci:
17
+ runs-on: ubuntu-latest
18
+ env:
19
+ CI: true
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v4
23
24
+ - name: Setup Node
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: 24
28
+ cache: npm
29
30
+ - name: Install deps
31
+ run: npm ci
32
33
+ - name: Lint
34
+ run: npm run lint
35
36
+ - name: Build
37
+ run: npm run build
38
39
+ - name: Coverage
40
+ run: npm run coverage
.nvmrc
@@ -0,0 +1 @@
+24
0 commit comments