From cc43f3bd10caffbc47b9ce42df71782177176001 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Tue, 20 Apr 2021 11:46:38 -0400 Subject: [PATCH] chore: update CI workflow to include Node.js 14.x (#404) Signed-off-by: Lance Ball --- .github/workflows/nodejs-ci-action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs-ci-action.yml b/.github/workflows/nodejs-ci-action.yml index 732a93c..43a9f46 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [10.x, 12.x] + node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2 @@ -35,7 +35,7 @@ jobs: - name: Generate coverage report uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 14.x - run: npm ci - run: npm run build --if-present - run: npm run coverage @@ -58,7 +58,7 @@ jobs: - name: Upload coverage report to codacy uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 14.x - run: | ( [[ "${CODACY_PROJECT_TOKEN}" != "" ]] && npm run coverage-publish ) || echo "Coverage report not published" env: