@@ -169,8 +169,7 @@ jobs:
169169 - name : Ensure clean build directory
170170 run : rm -rf build
171171 - run : yarn install --frozen-lockfile
172- - run : yarn install --frozen-lockfile
173- working-directory : compiler
172+ - run : yarn --cwd compiler install --frozen-lockfile
174173 - run : yarn test ${{ matrix.params }} --ci --shard=${{ matrix.shard }}
175174
176175 # ----- BUILD -----
@@ -208,8 +207,7 @@ jobs:
208207 - name : Ensure clean build directory
209208 run : rm -rf build
210209 - run : yarn install --frozen-lockfile
211- - run : yarn install --frozen-lockfile
212- working-directory : compiler
210+ - run : yarn --cwd compiler install --frozen-lockfile
213211 - run : yarn build --index=${{ matrix.worker_id }} --total=20 --r=${{ matrix.release_channel }} --ci
214212 env :
215213 CI : github
@@ -287,8 +285,7 @@ jobs:
287285 - name : Ensure clean build directory
288286 run : rm -rf build
289287 - run : yarn install --frozen-lockfile
290- - run : yarn install --frozen-lockfile
291- working-directory : compiler
288+ - run : yarn --cwd compiler install --frozen-lockfile
292289 - name : Restore archived build
293290 uses : actions/download-artifact@v4
294291 with :
@@ -438,8 +435,7 @@ jobs:
438435 key : fixtures_dom-node_modules-v5-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
439436 - name : Ensure clean build directory
440437 run : rm -rf build
441- - run : yarn install --frozen-lockfile
442- working-directory : fixtures/dom
438+ - run : yarn --cwd fixtures/dom install --frozen-lockfile
443439 - name : Restore archived build
444440 uses : actions/download-artifact@v4
445441 with :
@@ -635,8 +631,7 @@ jobs:
635631 key : runtime-node_modules-v5-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
636632 - name : Ensure clean build directory
637633 run : rm -rf build
638- - run : yarn install --frozen-lockfile
639- working-directory : scripts/release
634+ - run : yarn --cwd scripts/release install --frozen-lockfile
640635 - name : Download artifacts for base revision
641636 run : |
642637 GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=$(git rev-parse ${{ github.event.pull_request.base.sha }})
0 commit comments