Skip to content

Commit

Permalink
chore: upgrate dependencies (#204)
Browse files Browse the repository at this point in the history
# Why

update outdate dependencies

# How

`yarn upgrade-interactive --latest`
  • Loading branch information
Kudo authored Jul 1, 2024
1 parent 38bd186 commit a96ea49
Show file tree
Hide file tree
Showing 3 changed files with 3,131 additions and 1,436 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/expo-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,22 @@ jobs:
- name: Run TestApp
working-directory: ../TestApp/ios
run: |
set -x
SIMUDID=$(xcrun simctl list devices available -j | jq -r '.devices."com.apple.CoreSimulator.SimRuntime.iOS-17-5"[] | select(.name=="iPhone 15 Pro") | .udid')
echo "Using simulator udid[${SIMUDID}]"
xcrun simctl boot ${SIMUDID}
xcrun simctl install booted ./build/Build/Products/Release-iphonesimulator/TestApp.app
xcrun simctl spawn booted log stream --predicate 'process == "TestApp"' --level=debug > sim.log &
LOG_PID=$!
xcrun simctl launch booted com.testapp
sleep 5
sleep 20
kill -SIGINT $LOG_PID
set +e
grep -E "=== V8 version\[.+\] ===" sim.log > /dev/null
BUILD_STATUS=$?
set -e
echo "BUILD_STATUS=$BUILD_STATUS"
exit $BUILD_STATUS
- name: Collect failure files
if: failure()
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
"devDependencies": {
"@types/semver": "^7.5.8",
"clang-format": "^1.8.0",
"expo": "^48.0.0",
"expo-module-scripts": "^3.0.7"
"expo": "^51.0.17",
"expo-module-scripts": "^3.5.2"
},
"peerDependencies": {
"expo": "*"
Expand Down
Loading

0 comments on commit a96ea49

Please sign in to comment.