From 95a7b419dceacbd760f21ea3ee4f38520180df19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Tue, 27 Jul 2021 00:49:47 +0200 Subject: [PATCH] `--skip-builds` -> `--mode=skip-build` --- .github/workflows/ci.yml | 2 +- .github/workflows/update-parser-tests.yml | 2 +- renovate.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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",