@@ -169,8 +169,7 @@ jobs:
169
169
- name : Ensure clean build directory
170
170
run : rm -rf build
171
171
- run : yarn install --frozen-lockfile
172
- - run : yarn install --frozen-lockfile
173
- working-directory : compiler
172
+ - run : yarn --cwd compiler install --frozen-lockfile
174
173
- run : yarn test ${{ matrix.params }} --ci --shard=${{ matrix.shard }}
175
174
176
175
# ----- BUILD -----
@@ -208,8 +207,7 @@ jobs:
208
207
- name : Ensure clean build directory
209
208
run : rm -rf build
210
209
- run : yarn install --frozen-lockfile
211
- - run : yarn install --frozen-lockfile
212
- working-directory : compiler
210
+ - run : yarn --cwd compiler install --frozen-lockfile
213
211
- run : yarn build --index=${{ matrix.worker_id }} --total=20 --r=${{ matrix.release_channel }} --ci
214
212
env :
215
213
CI : github
@@ -287,8 +285,7 @@ jobs:
287
285
- name : Ensure clean build directory
288
286
run : rm -rf build
289
287
- run : yarn install --frozen-lockfile
290
- - run : yarn install --frozen-lockfile
291
- working-directory : compiler
288
+ - run : yarn --cwd compiler install --frozen-lockfile
292
289
- name : Restore archived build
293
290
uses : actions/download-artifact@v4
294
291
with :
@@ -438,8 +435,7 @@ jobs:
438
435
key : fixtures_dom-node_modules-v5-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
439
436
- name : Ensure clean build directory
440
437
run : rm -rf build
441
- - run : yarn install --frozen-lockfile
442
- working-directory : fixtures/dom
438
+ - run : yarn --cwd fixtures/dom install --frozen-lockfile
443
439
- name : Restore archived build
444
440
uses : actions/download-artifact@v4
445
441
with :
@@ -635,8 +631,7 @@ jobs:
635
631
key : runtime-node_modules-v5-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
636
632
- name : Ensure clean build directory
637
633
run : rm -rf build
638
- - run : yarn install --frozen-lockfile
639
- working-directory : scripts/release
634
+ - run : yarn --cwd scripts/release install --frozen-lockfile
640
635
- name : Download artifacts for base revision
641
636
run : |
642
637
GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=$(git rev-parse ${{ github.event.pull_request.base.sha }})
0 commit comments