We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02fed50 commit 763110cCopy full SHA for 763110c
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,31 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches: [main, master]
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ node-version: [18, 20]
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: ${{ matrix.node-version }}
18
+ cache: 'npm'
19
+ - run: npm ci
20
+ - run: npm run build --if-present
21
+ - run: npm test
22
+ lint:
23
24
25
26
27
28
+ node-version: 20
29
30
31
+ - run: npm run lint --if-present
0 commit comments