We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1542f41 commit 27d8fc3Copy full SHA for 27d8fc3
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,27 @@
1
+name: N|Solid CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ Run_CI_with_N|Solid:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ node-version: [18, 20, 22]
15
+ nsolid-version: [5]
16
+ fail-fast: false
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Setup N|Solid ${{ matrix.node-version }}
20
+ uses: nodesource/setup-nsolid@v1
21
+ with:
22
+ node-version: ${{ matrix.node-version }}
23
+ nsolid-version: ${{ matrix.nsolid-version }}
24
+ - run: nsolid -vv
25
+ - run: npm ci || npm install
26
+ - run: npm run test
27
0 commit comments