Files
30-seconds-of-code/snippets/isTravisCI.md
2020-09-15 21:52:00 +03:00

462 B

title, tags
title tags
isTravisCI node,intermediate

Checks if the current environment is Travis CI.

  • Checks if the current environment has the TRAVIS and CI environment variables (reference).
const isTravisCI = () => 'TRAVIS' in process.env && 'CI' in process.env;
isTravisCI(); // true (if code is running on Travis CI)