From 1a6921275452ddb195a64f7565e5e3a77c4bd213 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20B=C3=B6hm?= <188768+fb55@users.noreply.github.com> Date: Thu, 7 Apr 2022 11:44:45 +0100 Subject: [PATCH] chore(ci): Replace Node 10 with LTS --- .github/workflows/nodejs-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs-test.yml b/.github/workflows/nodejs-test.yml index e3ad243c..7c5198f0 100644 --- a/.github/workflows/nodejs-test.yml +++ b/.github/workflows/nodejs-test.yml @@ -9,7 +9,7 @@ on: env: CI: true FORCE_COLOR: 2 - NODE_COV: 16 # The Node.js version to run coveralls on + NODE_COV: "lts/*" # The Node.js version to run coveralls on jobs: lint: @@ -31,10 +31,10 @@ jobs: fail-fast: false matrix: node: - - 10 - 12 - 14 - 16 + - "lts/*" steps: - uses: actions/checkout@v3