You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds support for configuring the Metro port in Harness, including CLI overrides via `--metroPort`. Harness now also restores Android and iOS simulator Metro connection settings on cleanup so normal dev-mode launches keep working after a test run.
Harness now restores app startup stall recovery for RN-ready launches, including restart-between-files. Apps are retried when startup stalls without a crash, while confirmed native crashes still fail immediately with crash diagnostics.
Copy file name to clipboardExpand all lines: actions/shared/index.cjs
+4-19Lines changed: 4 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -4209,6 +4209,7 @@ var coerce = {
4209
4209
varNEVER=INVALID;
4210
4210
4211
4211
// ../config/dist/types.js
4212
+
varDEFAULT_METRO_PORT=8081;
4212
4213
varRunnerSchema=external_exports.object({
4213
4214
name: external_exports.string().min(1,"Runner name is required").regex(/^[a-zA-Z0-9._-]+$/,"Runner name can only contain alphanumeric characters, dots, underscores, and hyphens"),
host: external_exports.string().min(1,"Host is required").optional(),
4225
+
metroPort: external_exports.number().int("Metro port must be an integer").min(1,"Metro port must be at least 1").max(65535,"Metro port must be at most 65535").optional().default(DEFAULT_METRO_PORT),
@@ -4413,20 +4413,6 @@ var import_node_path5 = __toESM(require("path"), 1);
4413
4413
varimport_node_fs5=__toESM(require("fs"),1);
4414
4414
varimport_node_module2=require("module");
4415
4415
varimport_meta={};
4416
-
varDEPRECATED_PROPERTIES={
4417
-
bundleStartTimeout: '"bundleStartTimeout" is no longer used and can be removed from your config. Startup crash detection is now handled automatically by the crash supervisor.',
4418
-
maxAppRestarts: '"maxAppRestarts" is no longer used and can be removed from your config. Startup crash detection is now handled automatically by the crash supervisor.'
'"bundleStartTimeout" is no longer used and can be removed from your config. Startup crash detection is now handled automatically by the crash supervisor.',
15
-
maxAppRestarts:
16
-
'"maxAppRestarts" is no longer used and can be removed from your config. Startup crash detection is now handled automatically by the crash supervisor.',
0 commit comments