12345678910111213141516171819202122 |
- #! /bin/bash
-
- # TODO: Check dependencies
- echo "TODO: Check dependencies"
-
- # Example App Setup
- cd examples/WebTest
-
- # Install NPM dependencies
- yarn
-
- # Jetify deps (sudo if it fails for CI)
- npx jetify || sudo npx jetify
-
- # Install pods
- cd ios
- pod install
- cd ..
-
- # Return to root
- cd ../..
|