()
| 512 | } |
| 513 | |
| 514 | private getScriptEnv(): Record<string, string> { |
| 515 | const effectiveEnv = { ...this.ctx.global.env, ...this.stepEnvOverrides }; |
| 516 | const currentPath = effectiveEnv.PATH ?? process.env.PATH; |
| 517 | const newPath = currentPath ? `${BIN_PATH}:${currentPath}` : BIN_PATH; |
| 518 | return { |
| 519 | ...effectiveEnv, |
| 520 | __EXPO_STEPS_OUTPUTS_DIR: this.outputsDir, |
| 521 | __EXPO_STEPS_ENVS_DIR: this.envsDir, |
| 522 | __EXPO_STEPS_WORKING_DIRECTORY: this.ctx.workingDirectory, |
| 523 | PATH: newPath, |
| 524 | }; |
| 525 | } |
| 526 | } |
no outgoing calls
no test coverage detected