Files
30-seconds-of-code/snippets/is-travis-ci.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

572 B

title, tags, unlisted, cover, firstSeen, lastUpdated
title tags unlisted cover firstSeen lastUpdated
Environment is Travis CI node true succulent-5 2018-01-01T17:28:08+02:00 2020-10-20T23:02:01+03:00

Checks if the current environment is Travis CI.

  • Check 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)