Skip to content

Commit

Permalink
ci: debug pathes
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiKilian committed Dec 6, 2024
1 parent ae85526 commit 3002990
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ jobs:
${{ runner.os }}-cocoapods-${{ hashFiles('./packages/react-native-app/ios/Podfile.lock') }}
${{ runner.os }}-cocoapods-
- name: Check Pods
run: |
cd ios
ls -la
- name: Install Cocoapods
if: steps.cocoapods-cache.outputs.cache-hit != 'true'
run: yarn pod:install
Expand All @@ -149,6 +154,13 @@ jobs:
${{ runner.os }}-ios-build--${{ github.workflow }}-${{ github.sha }}
${{ runner.os }}-ios-build--${{ github.workflow }}-
- name: Check Build Cache
run: |
cd ios
ls -la
cd build
ls -la
- name: Build iOS
if: steps.ios-build-cache.outputs.cache-hit != 'true'
# Like `react-native build-ios --mode Release` but adapted for simulators
Expand Down Expand Up @@ -186,6 +198,14 @@ jobs:
with:
name: ios-app

- name: Check Artifact
run: |
ls -la
cd ios
ls -la
cd build
ls -la
- name: Install on iOS Simulator
run: |
xcrun simctl boot "iPhone 15 Pro"
Expand Down

0 comments on commit 3002990

Please sign in to comment.