react-native-navigation的迁移库

.travis.yml 535B

1234567891011121314151617181920212223242526
  1. language: node_js
  2. node_js:
  3. - "node"
  4. git:
  5. depth: 3
  6. branches:
  7. only:
  8. - master
  9. before_install:
  10. # Repo for newer Node.js versions
  11. - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
  12. # Repo for Yarn
  13. - sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
  14. - echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
  15. - sudo apt-get update -qq
  16. - sudo apt-get install -y -qq yarn
  17. cache:
  18. directories:
  19. - $HOME/.yarn-cache
  20. install:
  21. - yarn install