walling / is-ci

Detect if your code is running on a CI server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

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

About

Detect if your code is running on a CI server

License:MIT License


Languages

Language:JavaScript 100.0%