react-native-navigation的迁移库

.travis.yml 382B

12345678910111213141516171819202122232425262728293031
  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. - source ./scripts/installAndroidSDK.sh
  19. script:
  20. #- npm run test
  21. - cd android && ./gradlew clean testDebugUnitTest
  22. after_script:
  23. - echo "BUILD FINISHED"