Skip to content

Commit d83bd52

Browse files
committed
chore: Add Nsolir runtime to CI tests
Signed-off-by: Jefferson <[email protected]>
1 parent dad2dd3 commit d83bd52

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ jobs:
111111
strategy:
112112
matrix:
113113
runtime: [node, nsolid]
114-
node-version: [14, 16, 18, 20]
115114
os: [macos-latest, ubuntu-latest, windows-latest]
116115
include:
117116
- runtime: node
@@ -138,15 +137,15 @@ jobs:
138137
persist-credentials: false
139138

140139
- name: Use Node.js
141-
if: ${{ !matrix.nsolid-version }}
140+
if: ${{ matrix.runtime == 'node'}}
142141
uses: actions/setup-node@v4
143142
with:
144143
node-version: ${{ matrix.node-version }}
145144
cache: 'npm'
146145
cache-dependency-path: package.json
147146
- uses: actions/checkout@v4
148147
- uses: nodesource/setup-nsolid@v1
149-
if: ${{ matrix.nsolid-version }}
148+
if: ${{ matrix.runtime == 'nsolid'}}
150149
with:
151150
node-version: ${{ matrix.node-version }}
152151
nsolid-version: ${{ matrix.nsolid-version }}

0 commit comments

Comments
 (0)