From 11f6fe8044e73b53c4869bca9e6fa1019ce35ff6 Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Thu, 28 Oct 2021 11:51:09 +0200 Subject: [PATCH] Fix CI --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7881923e2..21990a317 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,8 +2,6 @@ name: Test on: push: pull_request: -env: - FORCE_COLOR: 2 jobs: full: name: Node.js 16 Full @@ -20,6 +18,8 @@ jobs: run: yarn install --frozen-lockfile - name: Run tests run: yarn test + env: + FORCE_COLOR: 2 short: runs-on: ubuntu-latest strategy: @@ -41,3 +41,5 @@ jobs: run: yarn install --frozen-lockfile --ignore-engines - name: Run unit tests run: npx jest + env: + FORCE_COLOR: 2