wallet-core/node_modules/is-ci
2017-05-28 00:40:43 +02:00
..
.npmignore add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
.travis.yml add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
index.js add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
LICENSE add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
package.json add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
README.md add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
test.js add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00

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