461 B
461 B
title, tags
| title | tags |
|---|---|
| isTravisCI | node,intermediate |
Checks if the current environment is Travis CI.
- Check if the current environment has the
TRAVISandCIenvironment variables (reference).
const isTravisCI = () => 'TRAVIS' in process.env && 'CI' in process.env;
isTravisCI(); // true (if code is running on Travis CI)