573 B
573 B
title, type, language, tags, unlisted, cover, dateModified
| title | type | language | tags | unlisted | cover | dateModified | |
|---|---|---|---|---|---|---|---|
| Environment is Travis CI | snippet | javascript |
|
true | succulent-5 | 2020-10-20T23:02:01+03:00 |
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)