react-native-navigation的迁移库

.travis.yml 382B

123456789101112131415161718192021222324252627282930313233
  1. language: node_js
  2. node_js:
  3. - "node"
  4. git:
  5. depth: 3
  6. branches:
  7. only:
  8. - master
  9. - v2
  10. cache:
  11. directories:
  12. - $HOME/.yarn-cache
  13. before_install:
  14. - set -e
  15. - ./scripts/clean.sh
  16. install:
  17. - npm i -g yarn
  18. - yarn
  19. script:
  20. - yarn run lint
  21. - yarn run test:js
  22. - source ./scripts/installAndroidSDK.sh
  23. - yarn run test:android
  24. after_script:
  25. - echo "BUILD FINISHED"