react-native-navigation的迁移库

.travis.yml 348B

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