react-native-navigation的迁移库

travis.sh 287B

123456789101112131415161718
  1. #!/bin/bash -e
  2. run_f () {
  3. cmd="${1}"
  4. name=${cmd//[ ]/_}
  5. echo "travis_fold:start:$name"
  6. ($cmd)
  7. echo "travis_fold:end:$name"
  8. }
  9. run_f "yarn install"
  10. run_f "yarn run lint"
  11. run_f "yarn run test-js"
  12. run_f "yarn run test-android"
  13. run_f "yarn run test-ios"
  14. run_f "yarn run release"