From a11bfc8f7ca18b9b80273c58c71d2604f39f30f3 Mon Sep 17 00:00:00 2001 From: Phillip Johnsen Date: Sat, 6 Feb 2021 19:35:43 +0100 Subject: [PATCH] Move Node.js 8 alongside other legacy Node.js versions in CI Now that Node.js 8 is end-of-life / no longer maintained, we might as well treat it as a legacy Node.js version too. --- .github/workflows/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 5339956..5a1a5fe 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [8.x, 10.x, 12.x, 14.x, 15.x] + node-version: [10.x, 12.x, 14.x, 15.x] steps: - uses: actions/checkout@v2 @@ -28,7 +28,7 @@ jobs: strategy: matrix: - node-version: [0.10.x, 0.12.x, 4.x, 6.x] + node-version: [0.10.x, 0.12.x, 4.x, 6.x, 8.x] steps: - uses: actions/checkout@v2