wallet-core/node_modules/is-ci/README.md
2017-05-28 00:40:43 +02:00

1.5 KiB

is-ci

Returns true if the current environment is a Continuous Integration server.

Please open an issue if your CI server isn't properly detected :)

Build status js-standard-style

Installation

npm install is-ci --save

Usage

var isCI = require('is-ci')

if (isCI) {
  console.log('The code is running on a CI server')
}

Supported CI tools

Officially supported CI servers:

Other CI tools using environment variables like BUILD_ID or CI would be detected as well.

License

MIT