ci: add --silent to yarn install (#1258)

At the moment, the integration tests CI tasks is full of install logs which are noisy and hide "more" import logs
This commit is contained in:
Alan Agius 2019-09-25 18:19:43 +02:00 committed by CaerusKaru
parent a459146c68
commit 544e5c4345

View File

@ -36,7 +36,7 @@ for testDir in $(ls | grep -v node_modules) ; do
cd $testDir
rm -rf dist
yarn install --cache-folder ../$cache
yarn install --cache-folder ../$cache --silent
yarn test || exit 1
# remove the temporary node modules directory to keep the source folder clean.