Skip to content

Commit

Permalink
ci(*): pnpm i --reporter=silent & npm --silent
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Jul 14, 2020
1 parent 28e6ec7 commit f592dc8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/.buildkite/publish/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ if [ "$DEVELOPMENT_ENVIRONMENT_COMMIT" ]; then
git checkout $DEVELOPMENT_ENVIRONMENT_COMMIT
fi

npm i -g pnpm@5.1.7
npm i -g yarn || echo "Ok"
npm i --silent -g pnpm@5.1.7
npm i --silent -g yarn || echo "Ok"
yarn --version || echo "Ok"
pnpm i --no-prefer-frozen-lockfile
pnpm i --no-prefer-frozen-lockfile --reporter=silent

pnpm run setup

cd packages/cli
pnpm i sqlite3@4.1 --unsafe-perm
pnpm i sqlite3@4.1 --unsafe-perm --reporter=silent
cd ../..

pnpm run test
Expand Down
6 changes: 3 additions & 3 deletions src/.buildkite/test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ set -ex

cd src

npm i -g pnpm@5.1.7
pnpm i --no-prefer-frozen-lockfile
npm i --silent -g pnpm@5.1.7
pnpm i --no-prefer-frozen-lockfile --reporter=silent

pnpm run setup

cd packages/cli
pnpm i sqlite3@4.1 --unsafe-perm
pnpm i sqlite3@4.1 --unsafe-perm --reporter=silent
cd ../..

pnpm run test

0 comments on commit f592dc8

Please sign in to comment.