Skip to content

Commit

Permalink
Fix monorepo worklow (#4255)
Browse files Browse the repository at this point in the history
## Summary

Fixing our red main as `react native run-ios` is having troubles with
launching a default (non-specified) simulator.

## Test plan

CI is the way.
  • Loading branch information
tjzel authored Mar 21, 2023
1 parent b0ee3de commit a121763
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-monorepo-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ jobs:
- name: Build iOS app RootApp
if: ${{ inputs.platform == 'iOS' }}
working-directory: monorepo/RootApp
run: yarn react-native run-ios
run: yarn react-native run-ios --simulator='iPhone 14'
- name: Build iOS app PackageApp
if: ${{ inputs.platform == 'iOS' }}
working-directory: monorepo/packages/PackageApp
run: yarn react-native run-ios
run: yarn react-native run-ios --simulator='iPhone 14'

- name: Build Android RootApp
if: ${{ inputs.platform == 'Android' }}
Expand Down

0 comments on commit a121763

Please sign in to comment.