aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-15 21:43:54 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-15 21:43:54 +0100
commitb6bb740aaf9f84144d91ec6d218ef5e40ae0c347 (patch)
tree9bb2b741d9c2e235d35986b547cb0adf6d7c4dff /.travis.yml
parentMerge branch 'chore/update-dependencies' into develop (diff)
downloadferdium-app-b6bb740aaf9f84144d91ec6d218ef5e40ae0c347.tar.gz
ferdium-app-b6bb740aaf9f84144d91ec6d218ef5e40ae0c347.tar.zst
ferdium-app-b6bb740aaf9f84144d91ec6d218ef5e40ae0c347.zip
Switch to npm
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 78c1e3693..28f61ac0f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,12 +9,12 @@ matrix:
9language: node_js 9language: node_js
10 10
11before_script: 11before_script:
12- yarn add global node-sass 12- npm install node-sass -g
13- yarn install 13- npm ci
14 14
15script: 15script:
16- yarn lint 16- npm run lint
17- travis_wait yarn build 17- travis_wait npm run build
18 18
19node_js: 19node_js:
20- '8' 20- '8'
@@ -22,7 +22,7 @@ node_js:
22before_install: 22before_install:
23- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt install libx11-dev libxext-dev libxss-dev libxkbfile-dev; fi 23- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt install libx11-dev libxext-dev libxss-dev libxkbfile-dev; fi
24 24
25cache: yarn 25cache: npm
26 26
27notifications: 27notifications:
28 email: false 28 email: false