(path)
| 652 | const GIT_USER_EMAIL = "github-actions@github.com"; |
| 653 | |
| 654 | const initializeGitRepository = (path) => { |
| 655 | execSync( |
| 656 | `git init \ |
| 657 | && git config user.name ${GIT_USER_NAME} \ |
| 658 | && git config user.email ${GIT_USER_EMAIL}`, |
| 659 | { cwd: path } |
| 660 | ); |
| 661 | }; |
| 662 | |
| 663 | const tryToPerformTestCommit = (path, env = process.env) => { |
| 664 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…