From 1f2a8a376b68503de5216f7dd8b03ba5100b600a Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 22 Dec 2023 11:50:46 -0500 Subject: [PATCH] Updates to the build action --- .github/workflows/build.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe99910..cf5d90f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,3 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - name: build on: @@ -9,6 +6,9 @@ on: pull_request: branches: [ main ] +env: + FORCE_COLOR: 2 + jobs: build: runs-on: ubuntu-latest @@ -18,10 +18,13 @@ jobs: node-version: [18, 20] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm install - - run: npm run test \ No newline at end of file + - run: | + echo "::remove-matcher owner=eslint-compact::" + echo "::remove-matcher owner=eslint-stylish::" + - run: npm run test