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 ac0242f commit 4909b72Copy full SHA for 4909b72
.github/workflows/pr_validation.yaml
@@ -220,6 +220,17 @@ jobs:
220
- name: Check the simulator UI
221
run: xcrun simctl ui booted appearance
222
223
+ - name: Take a screenshot of the simulator
224
+ run: |
225
+ mkdir -p simulator-screenshots
226
+ xcrun simctl io booted screenshot ./simulator-screenshots/screenshot.png
227
+
228
+ - name: Upload simulator screenshot as Artifact
229
+ uses: actions/upload-artifact@v3
230
+ with:
231
+ name: simulator-screenshot
232
+ path: simulator-screenshots/screenshot.png
233
234
- name: Check for installed app on simulator
235
run: |
236
echo "Checking for app's container on the booted simulator:"
0 commit comments