From 18ad814eed79025299a8c0bd551ead8e4660414b Mon Sep 17 00:00:00 2001 From: Josh Bocarsly <32345545+jdbocarsly@users.noreply.github.com> Date: Mon, 30 Jan 2023 00:11:17 +0000 Subject: [PATCH] Address CI failure for post setup node (#261) try suggested fix from https://github.com/actions/setup-node/issues/317 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58a64c752..9bd3514b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,6 +93,8 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 + env: + FORCE_COLOR: 0 with: node-version: "16.15.0" cache: "yarn"