Skip to content

Commit 86f11f9

Browse files
committed
ci: avoid yarn install failures
1 parent 2dd7663 commit 86f11f9

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,6 @@ jobs:
214214
- 10
215215
- 22
216216
steps:
217-
- uses: actions/checkout@v4
218-
219-
- uses: actions/setup-node@v4
220-
221217
- name: Place Builds
222218
uses: actions/download-artifact@v4
223219
with:
@@ -229,13 +225,15 @@ jobs:
229225
with:
230226
node-version: ${{ matrix.node-version }}
231227

232-
- name: Install pnpm
233-
uses: pnpm/action-setup@v4
234-
235228
- name: Install Yarn
236229
run: |
237230
npm i -g yarn
238231
yarn set version stable
239232
233+
- uses: actions/checkout@v4
234+
235+
- name: Install pnpm
236+
uses: pnpm/action-setup@v4
237+
240238
- name: Smoke Test
241239
run: npm run test.smoke

0 commit comments

Comments
 (0)