* Commit changes in git repo
(repoPath: string, message: string)
| 110 | * Commit changes in git repo |
| 111 | */ |
| 112 | async function commitChanges(repoPath: string, message: string): Promise<void> { |
| 113 | await execAsync(`git add -A && git commit -m "${message}"`, { |
| 114 | cwd: repoPath, |
| 115 | }); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Create workspace and handle cleanup on test failure |
no test coverage detected