File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ jobs:
111
111
strategy :
112
112
matrix :
113
113
runtime : [node, nsolid]
114
- node-version : [14, 16, 18, 20]
115
114
os : [macos-latest, ubuntu-latest, windows-latest]
116
115
include :
117
116
- runtime : node
@@ -138,15 +137,15 @@ jobs:
138
137
persist-credentials : false
139
138
140
139
- name : Use Node.js
141
- if : ${{ ! matrix.nsolid-version }}
140
+ if : ${{ matrix.runtime == 'node' }}
142
141
uses : actions/setup-node@v4
143
142
with :
144
143
node-version : ${{ matrix.node-version }}
145
144
cache : ' npm'
146
145
cache-dependency-path : package.json
147
146
- uses : actions/checkout@v4
148
147
- uses : nodesource/setup-nsolid@v1
149
- if : ${{ matrix.nsolid-version }}
148
+ if : ${{ matrix.runtime == 'nsolid' }}
150
149
with :
151
150
node-version : ${{ matrix.node-version }}
152
151
nsolid-version : ${{ matrix.nsolid-version }}
You can’t perform that action at this time.
0 commit comments