From 9fd15515add20101e04c5736f5c311d89f9e53c6 Mon Sep 17 00:00:00 2001 From: Joe Lencioni Date: Fri, 1 Nov 2024 14:03:42 -0500 Subject: [PATCH] Run Jest with `--colors` in CI This improves the readability of the test output in CI. --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 69d1f3f..6eb4bbe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: node-version: 16.x - run: yarn install --frozen-lockfile --ignore-engines - run: yarn lint - - run: yarn test + - run: yarn test --colors node18: runs-on: ubuntu-latest @@ -28,7 +28,7 @@ jobs: with: node-version: 18.x - run: yarn install --frozen-lockfile --ignore-engines - - run: yarn test + - run: yarn test --colors node20: runs-on: ubuntu-latest @@ -39,7 +39,7 @@ jobs: with: node-version: 20.x - run: yarn install --frozen-lockfile --ignore-engines - - run: yarn test + - run: yarn test --colors node22: runs-on: ubuntu-latest @@ -50,4 +50,4 @@ jobs: with: node-version: 22.x - run: yarn install --frozen-lockfile --ignore-engines - - run: yarn test + - run: yarn test --colors