Skip to content

Commit 2d28281

Browse files
committed
fix: bundle app before generating Xcode workspace
1 parent 61490cc commit 2d28281

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ios.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252
path: example/ios/Pods
5353
key: ${{ hashFiles('./example/ios/Podfile.lock') }}
5454

55+
- name: Bundle app
56+
run: yarn build:ios
57+
working-directory: example/ios
58+
5559
- name: Install example Pods
5660
run: pod install
5761
working-directory: example/ios

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"bootstrap-fabric": "yarn example && yarn && yarn example pods-fabric",
3535
"test:e2e:android": "bash ./scripts/run-maestro-tests.sh android",
3636
"run-example-android": "cd example;yarn build:android;react-native run-android --mode \"Release\" --appId com.pagerviewexample",
37-
"run-example-ios": "cd example;yarn build:ios;react-native run-ios --mode \"Release\" --simulator \"iPhone 13 (15.2)\"",
37+
"run-example-ios": "cd example;react-native run-ios --mode \"Release\" --simulator \"iPhone 13 (15.2)\"",
3838
"test:e2e:ios": "bash ./scripts/run-maestro-tests.sh ios"
3939
},
4040
"keywords": [

0 commit comments

Comments
 (0)