aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-13 21:15:28 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-15 14:13:49 +0530
commit112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7 (patch)
tree14e2b98a6bdca690130127170c8b39be62dfcd70 /.travis.yml
parentFixing the broken build process when building using the Dockerfile. (diff)
downloadferdium-app-112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7.tar.gz
ferdium-app-112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7.tar.zst
ferdium-app-112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7.zip
Minor refactoring to have consistent command-line invocations.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index b87e47c02..e09c1f08a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -58,9 +58,9 @@ before_install:
58 fi 58 fi
59install: 59install:
60 - npm cache clean -f || travis_terminate 1 60 - npm cache clean -f || travis_terminate 1
61 - npm uninstall node-gyp && travis_retry npm install -g node-gyp@8.0.0 || travis_terminate 1 61 - travis_retry npm uninstall node-gyp node-sass || travis_terminate 1
62 - npm uninstall node-sass && travis_retry npm install -g node-sass@5.0.0 || travis_terminate 1 62 - travis_retry npm i -g node-gyp@8.0.0 node-sass@5.0.0 || travis_terminate 1
63 - cd recipes && npm install && npm run package && cd .. || travis_terminate 1 63 - cd recipes && npm i && npm run package && cd .. || travis_terminate 1
64 - travis_retry npx lerna bootstrap || travis_terminate 1 64 - travis_retry npx lerna bootstrap || travis_terminate 1
65before_script: 65before_script:
66 - npm run lint && npm run test || travis_terminate 1 66 - npm run lint && npm run test || travis_terminate 1