Skip to content

Commit 355eddb

Browse files
include test-all.yml path in check_code_changes step
1 parent b3b6c83 commit 355eddb

1 file changed

Lines changed: 17 additions & 12 deletions

File tree

.github/workflows/test-all.yml

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ jobs:
8585
debugger_shell:
8686
- 'packages/debugger-shell/**'
8787
- 'scripts/debugger-shell/**'
88+
- '.github/workflows/test-all.yml'
8889
8990
prebuild_apple_dependencies:
9091
needs: check_code_changes
@@ -103,8 +104,7 @@ jobs:
103104

104105
test_ios_rntester_ruby_3_2_0:
105106
runs-on: macos-15
106-
needs:
107-
[prebuild_apple_dependencies, prebuild_react_native_core]
107+
needs: [prebuild_apple_dependencies, prebuild_react_native_core]
108108
steps:
109109
- name: Checkout
110110
uses: actions/checkout@v6
@@ -136,8 +136,7 @@ jobs:
136136

137137
test_ios_rntester:
138138
runs-on: macos-15-large
139-
needs:
140-
[prebuild_apple_dependencies, prebuild_react_native_core]
139+
needs: [prebuild_apple_dependencies, prebuild_react_native_core]
141140
continue-on-error: true
142141
strategy:
143142
fail-fast: false
@@ -155,8 +154,7 @@ jobs:
155154

156155
test_e2e_ios_rntester:
157156
runs-on: macos-15-large
158-
needs:
159-
[test_ios_rntester]
157+
needs: [test_ios_rntester]
160158
strategy:
161159
fail-fast: false
162160
matrix:
@@ -229,8 +227,8 @@ jobs:
229227
- name: Configure git
230228
shell: bash
231229
run: |
232-
git config --global user.email "react-native-bot@meta.com"
233-
git config --global user.name "React Native Bot"
230+
git config --global user.email "react-native-bot@meta.com"
231+
git config --global user.name "React Native Bot"
234232
- name: Prepare artifacts
235233
run: |
236234
REACT_NATIVE_PKG=$(find /tmp/react-native-tmp -type f -name "*.tgz")
@@ -287,8 +285,8 @@ jobs:
287285
- name: Set up JDK 17
288286
uses: actions/setup-java@v5
289287
with:
290-
java-version: '17'
291-
distribution: 'zulu'
288+
java-version: "17"
289+
distribution: "zulu"
292290
- name: Download Maven Local
293291
uses: actions/download-artifact@v7
294292
with:
@@ -334,7 +332,7 @@ jobs:
334332
app-path: /tmp/RNTestProject/android/app/build/outputs/apk/${{ matrix.flavor }}/app-${{ matrix.flavor }}.apk
335333
app-id: com.rntestproject
336334
maestro-flow: ./scripts/e2e/.maestro/
337-
install-java: 'false'
335+
install-java: "false"
338336
flavor: ${{ matrix.flavor }}
339337
working-directory: /tmp/RNTestProject
340338

@@ -639,7 +637,14 @@ jobs:
639637
# This is exactly the same as rerunning failed tests from the GH UI, but automated.
640638
rerun-failed-jobs:
641639
runs-on: ubuntu-latest
642-
needs: [test_e2e_ios_rntester, test_e2e_android_rntester, test_e2e_ios_templateapp, test_e2e_android_templateapp, run_fantom_tests]
640+
needs:
641+
[
642+
test_e2e_ios_rntester,
643+
test_e2e_android_rntester,
644+
test_e2e_ios_templateapp,
645+
test_e2e_android_templateapp,
646+
run_fantom_tests,
647+
]
643648
if: ${{ github.ref == 'refs/heads/main' && always() }}
644649
steps:
645650
- name: Checkout

0 commit comments

Comments
 (0)