1 parent 09962ef commit d7d48beCopy full SHA for d7d48be
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,27 @@
1
+name: CI — Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ env:
13
+ CI: true
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: '22'
23
24
+ - name: Run tests
25
+ run: |
26
+ npm install
27
+ npm run test
0 commit comments