We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2786634 commit 5dcf338Copy full SHA for 5dcf338
1 file changed
soulfield-v2-mvp/.github/workflows/ci.yml
@@ -0,0 +1,13 @@
1
+name: CI
2
+on: [push, pull_request]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix: { node: [20.x, 22.x] }
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: actions/setup-node@v4
11
+ with: { node-version: ${{ matrix.node }} }
12
+ - run: npm ci || npm i
13
+ - run: npm test
0 commit comments