Files
30-seconds-of-code/snippets/isTravisCI.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

537 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
isTravisCI node,intermediate 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)