diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d93ca3a3433b..f967e0ad5ead 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: YARN_ENABLE_SCRIPTS: false # disable post-install scripts YARN_NODE_LINKER: pnp # use pnp linker for better linking performance: it's meant to update yarn cache only run: | - yarn install --skip-builds + yarn install --mode=skip-build yarn-validate: name: Validate Yarn dependencies and constraints diff --git a/.github/workflows/update-parser-tests.yml b/.github/workflows/update-parser-tests.yml index 53fa9f2b9f88..e689281d0612 100644 --- a/.github/workflows/update-parser-tests.yml +++ b/.github/workflows/update-parser-tests.yml @@ -38,7 +38,7 @@ jobs: echo ${{ steps.test262.outputs.sha1 }} | ./scripts/parser-tests/bump-test262-version.sh - name: Build babel parser run: | - yarn install --immutable --skip-builds + yarn install --immutable --mode=skip-build yarn gulp build-rollup - name: Update test262 allow list run: | diff --git a/renovate.json b/renovate.json index e66a78fb50aa..1be8e102d17d 100644 --- a/renovate.json +++ b/renovate.json @@ -64,7 +64,7 @@ "schedule": ["before 00:05 on Friday"], "postUpgradeTasks": { "commands": [ - "yarn install --immutable --skip-builds", + "yarn install --immutable --mode=skip-build", "yarn gulp build-rollup", "make test-test262-update-allowlist", "make test-flow-update-allowlist",