(root: string, content: string)
| 522 | }); |
| 523 | }); |
| 524 | |
| 525 | describe("checkWorkflowConcurrencyExplicit", () => { |
| 526 | function writeWorkflow(root: string, content: string): string { |
| 527 | const file = join(root, "wf.yml"); |
| 528 | |
| 529 | writeFileSync(file, content); |
| 530 | |
| 531 | return file; |
| 532 | } |
| 533 |