Skip to content

Commit

Permalink
Run Jest with --colors in CI
Browse files Browse the repository at this point in the history
This improves the readability of the test output in CI.
  • Loading branch information
lencioni committed Nov 1, 2024
1 parent fcdf18b commit 9fd1551
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -50,4 +50,4 @@ jobs:
with:
node-version: 22.x
- run: yarn install --frozen-lockfile --ignore-engines
- run: yarn test
- run: yarn test --colors

0 comments on commit 9fd1551

Please sign in to comment.