react-native-navigation的迁移库

.travis.yml 372B

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