()
| 346 | } |
| 347 | |
| 348 | const buildAppMaybe = () => { |
| 349 | const buildApp = core.getInput('build') |
| 350 | if (!buildApp) { |
| 351 | return |
| 352 | } |
| 353 | |
| 354 | debug(`building application using "${buildApp}"`) |
| 355 | |
| 356 | return execCommand(buildApp, true, 'build app') |
| 357 | } |
| 358 | |
| 359 | const startServersMaybe = () => { |
| 360 | let startCommand |
nothing calls this directly
no test coverage detected