There was an error while loading. Please reload this page.
1 parent 8ff622e commit f874ddcCopy full SHA for f874ddc
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ node: [22, 24]
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: ${{ matrix.node }}
19
+ cache: npm
20
+ - run: npm ci
21
+ - run: npm run format:check
22
+ - run: npm run lint
23
+ - run: npm run build
24
+ - run: npm test
0 commit comments