(path)
| 832 | const GIT_USER_EMAIL = "github-actions@github.com"; |
| 833 | |
| 834 | const initializeGitRepository = (path) => { |
| 835 | execSync( |
| 836 | `git init \ |
| 837 | && git config user.name ${GIT_USER_NAME} \ |
| 838 | && git config user.email ${GIT_USER_EMAIL}`, |
| 839 | { cwd: path } |
| 840 | ); |
| 841 | }; |
| 842 | |
| 843 | const tryToPerformTestCommit = (path, env = process.env) => { |
| 844 | try { |
no outgoing calls
no test coverage detected