From fb578a7e9bbcdeb11451967650c7b98dc150dc43 Mon Sep 17 00:00:00 2001 From: Bret Comnes <166301+bcomnes@users.noreply.github.com> Date: Tue, 8 Feb 2022 11:24:04 -0800 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c7d481..d56fd4d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,6 +2,9 @@ name: tests on: [push, pull_request] +env: + FORCE_COLOR: 2 + jobs: test: runs-on: ${{ matrix.os }} @@ -9,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [15] + node: [lts/*] steps: - uses: actions/checkout@v2