* Ensure the task output directory exists
()
| 63 | * Ensure the task output directory exists |
| 64 | */ |
| 65 | async function ensureOutputDir(): Promise<void> { |
| 66 | await mkdir(getTaskOutputDir(), { recursive: true }) |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Get the output file path for a task |
no test coverage detected