* Returns the commit SHA being tested by a push or PR build. * @return {string}
()
| 231 | * @return {string} |
| 232 | */ |
| 233 | function ciBuildSha() { |
| 234 | return isPullRequestBuild() ? ciPullRequestSha() : ciCommitSha(); |
| 235 | } |
| 236 | |
| 237 | module.exports = { |
| 238 | ciBuildId, |
nothing calls this directly
no test coverage detected