()
| 267 | } |
| 268 | |
| 269 | export async function cleanupRunnerState(): Promise<void> { |
| 270 | try { |
| 271 | await clearRunnerState(); |
| 272 | logger.debug('[RUNNER RUN] Runner state file removed'); |
| 273 | } catch (error) { |
| 274 | logger.debug('[RUNNER RUN] Error cleaning up runner metadata', error); |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | export async function stopRunner() { |
| 279 | try { |
no test coverage detected