Skip to content

Commit c90a699

Browse files
committed
fix: always declare full color support
1 parent 88322bd commit c90a699

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ node_js: '10'
33
cache: yarn
44
env:
55
global:
6-
- FORCE_COLOR=1
6+
- FORCE_COLOR=3
77
install:
88
- yarn
99
jobs:

src/buildkite.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export async function initBuildkite({
3333
} else {
3434
const buildkiteYaml = {
3535
env: {
36-
FORCE_COLOR: 1,
36+
FORCE_COLOR: 3,
3737
},
3838
steps: [
3939
{

src/travis.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export async function initTravis({
7676
node_js: '12',
7777
cache: 'yarn',
7878
env: {
79-
global: ['FORCE_COLOR=1'],
79+
global: ['FORCE_COLOR=3'],
8080
},
8181
install: ['yarn'],
8282
jobs: {

0 commit comments

Comments
 (0)