From 83f56649b7bd6bd72fa2c58b154bbb8de55a62c4 Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Mon, 29 Jul 2024 16:29:47 +0200 Subject: [PATCH] Remove Node.js 14.x from CI --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9bd244..bb76c78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,10 +9,11 @@ on: jobs: build: runs-on: ubuntu-latest - + strategy: + fail-fast: false matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [14.x, 16.x] steps: - uses: actions/checkout@v4