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