From 437e803f27f055514ac6755d99af21b4d0371fcd Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Mon, 9 Oct 2017 08:13:38 +0100 Subject: [PATCH] ci(aio): freeze the lockfile for CI builds (#19616) The CI will now fail if the dependencies in the AIO package.json have been modified without the lockfile being updated. PR Close #19616 --- scripts/ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/install.sh b/scripts/ci/install.sh index 50f88c45a5..a1510242fb 100755 --- a/scripts/ci/install.sh +++ b/scripts/ci/install.sh @@ -52,7 +52,7 @@ if [[ ${TRAVIS} && (${CI_MODE} == "aio" || ${CI_MODE} == "aio_e2e" || ${CI_MODE} travisFoldStart "yarn-install.aio" ( cd ${PROJECT_ROOT}/aio - yarn install + yarn install --frozen-lockfile --non-interactive ) travisFoldEnd "yarn-install.aio" fi