diff --git a/.github/workflows/reusable-build-system-test-react-native.yml b/.github/workflows/reusable-build-system-test-react-native.yml index 2e6b9519003..73d8e064afe 100644 --- a/.github/workflows/reusable-build-system-test-react-native.yml +++ b/.github/workflows/reusable-build-system-test-react-native.yml @@ -20,8 +20,7 @@ jobs: # uncomment to re-enable # build-tool: [cli, expo] build-tool: [expo] - # Temporarily pin to previous version - build-tool-version: [51] + build-tool-version: [latest] pkg-manager: [npm] language: [ts] node-version: [18] diff --git a/build-system-tests/scripts/mega-app-create-app.sh b/build-system-tests/scripts/mega-app-create-app.sh index dccaa0eda5a..902cea92016 100755 --- a/build-system-tests/scripts/mega-app-create-app.sh +++ b/build-system-tests/scripts/mega-app-create-app.sh @@ -110,8 +110,8 @@ if [[ "$FRAMEWORK" == 'react-native' ]]; then echo "npm list react-native" npm list react-native elif [[ "$BUILD_TOOL" == "expo" ]]; then - echo "npx create-expo-app $MEGA_APP_NAME --template expo-template-blank-typescript" - npx create-expo-app $MEGA_APP_NAME --template expo-template-blank-typescript + echo "npx create-expo-app $MEGA_APP_NAME --template expo-template-blank-typescript@sdk-51" + npx create-expo-app $MEGA_APP_NAME --template expo-template-blank-typescript@sdk-51 # Temporarily pin expo to version 51 echo "cd $MEGA_APP_NAME" cd $MEGA_APP_NAME echo "npm list expo" # Log the package.json to check the expo version should be later than 48.0.19