Skip to content

Commit d80cb84

Browse files
committed
ci: revert test control input name
1 parent ac83aab commit d80cb84

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/actions/test-ios-rntester/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
- name: Run yarn install again, with the correct hermes version
4242
uses: ./.github/actions/yarn-install
4343
- name: Prepare IOS Tests
44-
if: ${{ inputs.run-unit-integration-tests == 'true' }}
44+
if: ${{ inputs.run-unit-tests == 'true' }}
4545
uses: ./.github/actions/prepare-ios-tests
4646
- name: Download ReactNativeDependencies
4747
if: ${{ inputs.use-frameworks == 'false' }}
@@ -95,12 +95,12 @@ runs:
9595
echo "App found at $APP_PATH"
9696
echo "app-path=$APP_PATH" >> $GITHUB_ENV
9797
- name: "Run Tests: iOS Unit and Integration Tests"
98-
if: ${{ inputs.run-unit-integration-tests == 'true' }}
98+
if: ${{ inputs.run-unit-tests == 'true' }}
9999
shell: bash
100100
run: yarn test-ios
101101

102102
- name: Zip Derived data folder
103-
if: ${{ inputs.run-unit-integration-tests == 'true' }}
103+
if: ${{ inputs.run-unit-tests == 'true' }}
104104
shell: bash
105105
run: |
106106
echo "zipping tests results"
@@ -109,7 +109,7 @@ runs:
109109
tar -zcvf xcresults.tar.gz $XCRESULT_PATH
110110
- name: Upload artifact
111111
uses: actions/upload-artifact@v4.3.4
112-
if: ${{ inputs.run-unit-integration-tests == 'true' }}
112+
if: ${{ inputs.run-unit-tests == 'true' }}
113113
with:
114114
name: xcresults-${{ inputs.flavor }}-${{ inputs.use-frameworks }}-Ruby${{ inputs.ruby-version }}
115115
path: /Users/runner/Library/Developer/Xcode/xcresults.tar.gz
@@ -120,7 +120,7 @@ runs:
120120
name: RNTesterApp-NewArch-${{ inputs.flavor }}
121121
path: ${{ env.app-path }}
122122
- name: Store test results
123-
if: ${{ inputs.run-unit-integration-tests == 'true' }}
123+
if: ${{ inputs.run-unit-tests == 'true' }}
124124
uses: actions/upload-artifact@v4.3.4
125125
with:
126126
name: test-results-${{ inputs.flavor }}-${{ inputs.use-frameworks }}-Ruby${{ inputs.ruby-version }}

0 commit comments

Comments
 (0)