Skip to content

Commit efa0523

Browse files
robertherberclaude
andauthored
Replace --non-interactive with CI=1 for expo start/prebuild (#357)
--non-interactive is deprecated in newer Expo CLI versions; the recommended replacement is setting CI=1 (or CI=true) in the environment. GitHub Actions already sets CI=true, so expo prebuild just needs the flag removed; the start script explicitly sets CI=1 to be safe. https://claude.ai/code/session_01Kd5nY1iNaeEsUNSF76z1bN Co-authored-by: Claude <noreply@anthropic.com>
1 parent 7739774 commit efa0523

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216

217217
- name: Expo Prebuild
218218
working-directory: apps/example
219-
run: bunx expo prebuild --platform ios --non-interactive
219+
run: bunx expo prebuild --platform ios
220220

221221
- name: Build iOS project
222222
working-directory: apps/example/ios

apps/example/scripts/run-healthkit-contracts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ rm -f "$METRO_LOG"
123123
if ! curl -fsS --max-time 2 "http://127.0.0.1:8081/status" >/dev/null 2>&1; then
124124
(
125125
cd "$APP_DIR"
126-
bun start --clear --non-interactive >"$METRO_LOG" 2>&1
126+
CI=1 bun start --clear >"$METRO_LOG" 2>&1
127127
) &
128128
METRO_PID="$!"
129129

0 commit comments

Comments
 (0)