Skip to content

Commit

Permalink
chore(e2e): Execute all e2e app patches from the app root dir (#3324)
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich authored Oct 5, 2023
1 parent 823134b commit 4c630f2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,17 +267,16 @@ jobs:
- name: Patch Android App RN
if: ${{ matrix.platform == 'android' }}
working-directory: test/react-native
working-directory: test/react-native/versions/${{ matrix.rn-version }}/RnDiffApp
run: |
./rn.patch.app.build.gradle.js \
--app-build-gradle 'versions/${{ matrix.rn-version }}/RnDiffApp/android/app/build.gradle'
../../../rn.patch.app.build.gradle.js --app-build-gradle android/app/build.gradle
- name: Patch iOS App RN
if: ${{ matrix.platform == 'ios' }}
working-directory: test/react-native
working-directory: test/react-native/versions/${{ matrix.rn-version }}/RnDiffApp
run: |
./rn.patch.xcode.js \
--project 'versions/${{ matrix.rn-version }}/RnDiffApp/ios/RnDiffApp.xcodeproj/project.pbxproj' \
../../../rn.patch.xcode.js \
--project ios/RnDiffApp.xcodeproj/project.pbxproj \
--rn-version '${{ matrix.rn-version }}'
- name: Build Android App
Expand Down

0 comments on commit 4c630f2

Please sign in to comment.