Quick tool to check if we are inside a CI environment
|
||
---|---|---|
.forgejo/workflows | ||
.gitignore | ||
.npmrc | ||
index.d.ts | ||
index.js | ||
LICENSE | ||
not.js | ||
package-build.json | ||
package.json | ||
README.md | ||
test.mjs |
inside-ci
Quick tool to check if we are inside a CI environment
API
insideCi()
Returns true if inside CI. Otherwise returns false.
CLI
inside-ci
or in-ci
Returns code 0 if inside CI. Otherwise returns an error code of 1.
inside-ci || echo 'We are not inside CI, install some stuff'
in-ci && echo 'We are inside CI, install some stuff'
Example:
is-ci || husky install
not-ci
Inverse of the above command