From 112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Thu, 13 May 2021 21:15:28 +0530 Subject: Minor refactoring to have consistent command-line invocations. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index b87e47c02..e09c1f08a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,9 +58,9 @@ before_install: fi install: - npm cache clean -f || travis_terminate 1 - - npm uninstall node-gyp && travis_retry npm install -g node-gyp@8.0.0 || travis_terminate 1 - - npm uninstall node-sass && travis_retry npm install -g node-sass@5.0.0 || travis_terminate 1 - - cd recipes && npm install && npm run package && cd .. || travis_terminate 1 + - travis_retry npm uninstall node-gyp node-sass || travis_terminate 1 + - travis_retry npm i -g node-gyp@8.0.0 node-sass@5.0.0 || travis_terminate 1 + - cd recipes && npm i && npm run package && cd .. || travis_terminate 1 - travis_retry npx lerna bootstrap || travis_terminate 1 before_script: - npm run lint && npm run test || travis_terminate 1 -- cgit v1.2.3-54-g00ecf