diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 59599f321..e750477d9 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -125,21 +125,14 @@ jobs: - name: Setup uses: ./.github/actions/setup - - name: Install Maestro - run: | - curl -Ls "https://get.maestro.mobile.dev" | bash - echo "$HOME/.maestro/bin" >> "$GITHUB_PATH" - brew tap facebook/fb - brew install facebook/fb/idb-companion - - name: Cache Cocoapods uses: actions/cache@v4 id: cocoapods-cache with: path: ./ios/Pods - key: ${{ runner.os }}-cocoapods-${{ hashFiles('ios/Podfile.lock') }} + key: ${{ runner.os }}-cocoapods-${{ hashFiles('./packages/react-native-app/ios/Podfile.lock') }} restore-keys: | - ${{ runner.os }}-cocoapods-${{ hashFiles('ios/Podfile.lock') }} + ${{ runner.os }}-cocoapods-${{ hashFiles('./packages/react-native-app/ios/Podfile.lock') }} ${{ runner.os }}-cocoapods- - name: Install Cocoapods @@ -150,7 +143,7 @@ jobs: uses: actions/cache@v4 id: ios-build-cache with: - path: ./ios/build + path: ./packages/react-native-app/ios/build key: ${{ runner.os }}-ios-build--${{ github.workflow }}-${{ github.sha }} restore-keys: | ${{ runner.os }}-ios-build--${{ github.workflow }}-${{ github.sha }} @@ -165,8 +158,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ios-app - path: ./ios/build/Build/Products/Release-iphonesimulator/MapLibreReactNativeExample.app - + path: ./packages/react-native-app/ios/build/Build/Products/Release-iphonesimulator/MapLibreReactNativeExample.app test-ios: name: Test iOS