File tree Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -225,15 +225,29 @@ jobs:
225
225
with :
226
226
node-version : ${{ matrix.node-version }}
227
227
228
- - name : Install Yarn
228
+ - name : Install Yarn 2
229
+ if : matrix.node-version == 10
229
230
run : |
230
- npm i -g yarn
231
- yarn set version stable
231
+ npm i -g yarn@^2
232
232
233
- - uses : actions/checkout@v4
233
+ - name : Install Yarn Latest
234
+ if : matrix.node-version == 22
235
+ run : |
236
+ npm i -g yarn@latest
237
+
238
+ - name : Install Pnpm 5
239
+ if : matrix.node-version == 10
240
+ uses : pnpm/action-setup@v4
241
+ with :
242
+ version : 5
234
243
235
- - name : Install pnpm
244
+ - name : Install Pnpm 9
245
+ if : matrix.node-version == 22
236
246
uses : pnpm/action-setup@v4
247
+ with :
248
+ version : 9
249
+
250
+ - uses : actions/checkout@v4
237
251
238
252
- name : Smoke Test
239
253
run : npm run test.smoke
You can’t perform that action at this time.
0 commit comments