We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e01537f commit f8dcbe7Copy full SHA for f8dcbe7
1 file changed
.github/workflows/pull-request.yml
@@ -110,6 +110,16 @@ jobs:
110
with:
111
xcode-version: 16.3
112
113
+ - name: Setup iOS Simulator
114
+ uses: futureware-tech/simulator-action@v4
115
+ id: simulator
116
+ with:
117
+ model: iPhone 16
118
+ os: iOS
119
+ os_version: ">=18.0"
120
+ wait_for_boot: true
121
+ shutdown_after_job: true
122
+
123
- name: Install node modules
124
run: yarn install
125
@@ -133,7 +143,7 @@ jobs:
133
143
set -o pipefail && xcodebuild -workspace MParticleSample.xcworkspace \
134
144
-configuration Debug \
135
145
-scheme MParticleSample \
136
- -destination 'platform=iOS Simulator,name=iPhone 16' \
146
+ -destination 'id=${{ steps.simulator.outputs.udid }}' \
137
147
-derivedDataPath ios/build \
138
148
-UseModernBuildSystem=YES \
139
149
build | bundle exec xcpretty -k
0 commit comments