Function
isGithubActionsBuild
* Returns true if this is a GitHub Actions build. * @return {boolean}
()
Source from the content-addressed store, hash-verified
| 30 | * @return {boolean} |
| 31 | */ |
| 32 | function isGithubActionsBuild() { |
| 33 | return !!env('GITHUB_ACTIONS'); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Returns true if this is a CircleCI build. |
Tested by
no test coverage detected