react-native-navigation的迁移库

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