Skip to content

Commit f880983

Browse files
chore(ci): Update React Native version in e2e workflow to 0.79.1 (#4759)
1 parent fc24955 commit f880983

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/e2e.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -163,15 +163,15 @@ jobs:
163163
strategy:
164164
fail-fast: false # keeps matrix running if one fails
165165
matrix:
166-
rn-version: ['0.65.3', '0.77.1']
166+
rn-version: ['0.65.3', '0.79.1']
167167
rn-architecture: ['legacy', 'new']
168168
platform: ['android', 'ios']
169169
build-type: ['production']
170170
ios-use-frameworks: ['no', 'static', 'dynamic']
171171
engine: ['hermes', 'jsc']
172172
include:
173173
- platform: ios
174-
rn-version: '0.77.1'
174+
rn-version: '0.79.1'
175175
xcode-version: '16.2'
176176
runs-on: macos-15
177177
- platform: ios
@@ -182,7 +182,7 @@ jobs:
182182
runs-on: ubuntu-latest
183183
exclude:
184184
# exclude JSC for new RN versions (keeping the matrix manageable)
185-
- rn-version: '0.77.1'
185+
- rn-version: '0.79.1'
186186
engine: 'jsc'
187187
# exclude all rn versions lower than 0.70.0 for new architecture
188188
- rn-version: '0.65.3'
@@ -301,15 +301,15 @@ jobs:
301301
strategy:
302302
fail-fast: false # keeps matrix running if one fails
303303
matrix:
304-
rn-version: ['0.65.3', '0.77.1']
304+
rn-version: ['0.65.3', '0.79.1']
305305
rn-architecture: ['legacy', 'new']
306306
platform: ['android', 'ios']
307307
build-type: ['production']
308308
ios-use-frameworks: ['no'] # test only no framworks
309309
engine: ['hermes', 'jsc']
310310
include:
311311
- platform: ios
312-
rn-version: '0.77.1'
312+
rn-version: '0.79.1'
313313
runs-on: macos-15
314314
- platform: ios
315315
rn-version: '0.65.3'
@@ -323,7 +323,7 @@ jobs:
323323
# e2e test only the default combinations
324324
- rn-version: '0.65.3'
325325
engine: 'hermes'
326-
- rn-version: '0.77.1'
326+
- rn-version: '0.79.1'
327327
engine: 'jsc'
328328

329329
steps:

dev-packages/e2e-tests/patch-scripts/rn.patch.app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Sentry.init({
3838
const e2eComponentPatch = '<EndToEndTestsScreen />';
3939
const lastImportRex = /^([^]*)(import\s+[^;]*?;$)/m;
4040
const patchRex = '@sentry/react-native';
41-
const headerComponentRex = /<Header \/>/gm;
41+
const headerComponentRex = /<ScrollView/gm;
4242

4343
const jsPath = path.join(args.app, 'App.js');
4444
const tsxPath = path.join(args.app, 'App.tsx');

0 commit comments

Comments
 (0)