( tree: Tree, context: ConfigContext, )
| 49 | } |
| 50 | |
| 51 | async function writeGitHubWorkflow( |
| 52 | tree: Tree, |
| 53 | context: ConfigContext, |
| 54 | ): Promise<void> { |
| 55 | await tree.write(GITHUB_WORKFLOW_PATH, await generateGitHubYaml(context)); |
| 56 | } |
| 57 | |
| 58 | async function generateGitHubYaml({ |
| 59 | mode, |
no test coverage detected