Eugene Pankov 7 years ago
parent
commit
cf6a7d10b3
1 changed files with 3 additions and 2 deletions
  1. 3 2
      .travis.yml

+ 3 - 2
.travis.yml

@@ -11,8 +11,9 @@ jobs:
     - stage: 'Build'
       os: linux
       before_install:
-        - rm app/node_modules/.yarn-integrity || true
         - yarn
+        - rm app/node_modules/.yarn-integrity || true
+        - scripts/install-deps.js
       script:
         - scripts/build-native.js
         - yarn run build
@@ -37,7 +38,7 @@ jobs:
         - ssh-add .travis.ssh.key
         - yarn
         - yarn run docs
-        - rsync -r docs/api/ [email protected]:/srv/terminus-docs/
+        - rsync -e "ssh -o StrictHostKeyChecking=no" -arv docs/api/ [email protected]:/srv/terminus-docs/
 
 dist: trusty
 sudo: false