From 2e285c5a1b90417746c30ff25492e47c1c362597 Mon Sep 17 00:00:00 2001 From: Vladimir Grichina Date: Wed, 10 Jul 2019 19:40:26 -0700 Subject: [PATCH] Bring back yarn --- .gitlab-ci.yml | 4 ++-- test/new_project.sh | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 24d71c0a..9d4fb2f1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,5 +8,5 @@ run_tests: tags: - gcloud script: - - npm install - - NODE_ENV=ci npm run test + - yarn + - NODE_ENV=ci yarn test diff --git a/test/new_project.sh b/test/new_project.sh index ce68edbc..ec0679de 100755 --- a/test/new_project.sh +++ b/test/new_project.sh @@ -8,10 +8,10 @@ rm -rf tmp-project mkdir tmp-project cd tmp-project ../bin/near new_project -npm install -npm remove near-shell -npm install ../ -npm run test +yarn +yarn remove near-shell +yarn add ../ +NODE_ENV=development yarn test cd .. rm -rf tmp-project