Skip to content

Commit

Permalink
add GitHub Actions in the list of supporting colors
Browse files Browse the repository at this point in the history
  • Loading branch information
gravityvi committed Sep 19, 2023
1 parent 17a5d7b commit 482dbf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/settings/settings.js
Expand Up @@ -485,8 +485,8 @@ class Settings {
}

setColorOutput() {
const {isCI, CIRCLE, JENKINS, NETLIFY, TRAVIS, GITLAB, BUILDKITE} = CI_Info;
const coloringSupport = CIRCLE || JENKINS || NETLIFY || TRAVIS || GITLAB || BUILDKITE;
const {isCI, CIRCLE, JENKINS, NETLIFY, TRAVIS, GITLAB, GITHUB_ACTIONS, BUILDKITE} = CI_Info;
const coloringSupport = CIRCLE || JENKINS || NETLIFY || TRAVIS || GITLAB || BUILDKITE || GITHUB_ACTIONS;

if (isCI && !coloringSupport) {
this.settings.disable_colors = true;
Expand Down

0 comments on commit 482dbf0

Please sign in to comment.