We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e295a9 commit ba55b3eCopy full SHA for ba55b3e
1 file changed
.github/workflows/ci.yml
@@ -37,15 +37,7 @@ jobs:
37
38
- name: Install CocoaPods
39
working-directory: apps/example/ios
40
- run: |
41
- HASH_FILE="/tmp/.podfile-lock-hash"
42
- CURRENT_HASH=$(shasum Podfile.lock | cut -d' ' -f1)
43
- if [ -f "$HASH_FILE" ] && [ "$(cat "$HASH_FILE")" = "$CURRENT_HASH" ] && [ -d "Pods" ]; then
44
- echo "Podfile.lock unchanged and Pods exists — skipping pod install"
45
- else
46
- pod install
47
- echo "$CURRENT_HASH" > "$HASH_FILE"
48
- fi
+ run: pod install
49
50
- name: Ensure Metro port is free
51
run: |
0 commit comments