We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d737a2 commit 595c9a8Copy full SHA for 595c9a8
2 files changed
.github/actions/test-ios-rntester/action.yml
@@ -104,9 +104,7 @@ runs:
104
shell: bash
105
run: |
106
echo "zipping tests results"
107
- cd /Users/runner/Library/Developer/Xcode
108
- XCRESULT_PATH=$(find . -name '*.xcresult')
109
- tar -zcvf xcresults.tar.gz $XCRESULT_PATH
+ tar -zcvf xcresults.tar.gz "/tmp/RNTesterTestResults"
110
- name: Upload artifact
111
uses: actions/upload-artifact@v4.3.4
112
if: ${{ inputs.run-unit-tests == 'true' }}
scripts/objc-test.sh
@@ -78,6 +78,7 @@ runTests() {
78
-sdk iphonesimulator \
79
-destination "platform=iOS Simulator,name=$IOS_DEVICE,OS=$IOS_TARGET_OS" \
80
-derivedDataPath "/tmp/RNTesterBuild" \
81
+ -resultBundlePath "/tmp/RNTesterTestResults" \
82
"${SKIPPED_TESTS[@]}"
83
}
84
0 commit comments