aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
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