No Description

detox-setup 286B

12345678910111213141516171819202122
  1. #! /bin/bash
  2. # TODO: Check dependencies
  3. echo "TODO: Check dependencies"
  4. # Example App Setup
  5. cd examples/WebTest
  6. # Install NPM dependencies
  7. yarn
  8. # Jetify deps (sudo if it fails for CI)
  9. npx jetify || sudo npx jetify
  10. # Install pods
  11. cd ios
  12. pod install
  13. cd ..
  14. # Return to root
  15. cd ../..