diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index ce2600781..28ce34cea 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -21,6 +21,8 @@ jobs: - name: Setup Node.js 12 uses: actions/setup-node@v2 + env: + FORCE_COLOR: 0 with: node-version: 12.x registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a72f543e..0045564c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,8 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 + env: + FORCE_COLOR: 0 with: node-version: '16' cache: 'yarn' diff --git a/.github/workflows/verify-browserstack.yml b/.github/workflows/verify-browserstack.yml index ef35ca148..7495bf320 100644 --- a/.github/workflows/verify-browserstack.yml +++ b/.github/workflows/verify-browserstack.yml @@ -17,6 +17,8 @@ jobs: - name: Setup Node 14 uses: actions/setup-node@v2 + env: + FORCE_COLOR: 0 with: node-version: '14' cache: 'yarn' diff --git a/.github/workflows/verify-node.yml b/.github/workflows/verify-node.yml index 90a52bcca..65c23f2aa 100644 --- a/.github/workflows/verify-node.yml +++ b/.github/workflows/verify-node.yml @@ -21,6 +21,8 @@ jobs: - name: Setup Node ${{ matrix.node-version }} uses: actions/setup-node@v2 + env: + FORCE_COLOR: 0 with: node-version: ${{ matrix.node-version }} cache: yarn diff --git a/.github/workflows/verify-saucelabs.yml b/.github/workflows/verify-saucelabs.yml index 913a3cf06..2e05f668d 100644 --- a/.github/workflows/verify-saucelabs.yml +++ b/.github/workflows/verify-saucelabs.yml @@ -17,6 +17,8 @@ jobs: - name: Setup Node 14 uses: actions/setup-node@v2 + env: + FORCE_COLOR: 0 with: node-version: '14' cache: 'yarn' diff --git a/.github/workflows/verify-windows.yml b/.github/workflows/verify-windows.yml index 743efc649..ff2837dcc 100644 --- a/.github/workflows/verify-windows.yml +++ b/.github/workflows/verify-windows.yml @@ -16,6 +16,8 @@ jobs: - name: Setup Node '12' uses: actions/setup-node@v2 + env: + FORCE_COLOR: 0 with: node-version: '12' cache: 'yarn'