Socket
Socket
Sign inDemoInstall

@npmcli/ci-detect

Package Overview
Dependencies
0
Maintainers
7
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @npmcli/ci-detect

Detect what kind of CI environment the program is in


Version published
Maintainers
7
Install size
4.92 kB
Created

Readme

Source

@npmcli/ci-detect

Detect what kind of CI environment the program is in

Build Status Coverage Status

USAGE

const ciDetect = require('@npmcli/ci-detect')
// false if not in CI
// otherwise, a string indicating the CI environment type
const inCI = ciDetect()

CIs Detected

Returns one of the following strings, or false if none match, by looking at the appropriate environment variables.

  • 'gerrit' Gerrit
  • 'gitlab' GitLab
  • 'circleci' Circle-CI
  • 'semaphore' Semaphore
  • 'drone' Drone
  • 'github-actions' GitHub Actions
  • 'tddium' TDDium
  • 'jenkins' Jenkins
  • 'bamboo' Bamboo
  • 'gocd' GoCD
  • 'codeship' CodeShip (or any that set CI_NAME environment variable)
  • 'travis-ci' Travis-CI - A few other CI systems set TRAVIS=1 in the environment, because devs use that to indicate "test mode", so this one can get some false positives.
  • 'aws-codebuild' AWS CodeBuild
  • 'builder' Google Cloud Builder - This one is a bit weird. It doesn't really set anything that can be reliably detected except BUILDER_OUTPUT, so it can get false positives pretty easily.
  • 'custom' anything else that sets CI environment variable

Caveats

Note that since any program can set or unset whatever environment variables they want, this is not 100% reliable.

Also, note that if your program does different behavior in CI/test/deployment than other places, then there's a good chance that you're doing something wrong!

But, for little niceties like setting colors or other output parameters, or logging and that sort of non-essential thing, this module provides a way to tweak without checking a bunch of things in a bunch of places. Mostly, it's a single place to keep a note of what CI system sets which environment variable.

FAQs

Last updated on 06 Jan 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc