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
This commit is contained in:
Peter Bacon Darwin 2017-10-09 08:13:38 +01:00 committed by Chuck Jazdzewski
parent dbe6cdad7e
commit 437e803f27
1 changed files with 1 additions and 1 deletions

View File

@ -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