From 6006470af34d810d7f2984e73bfd8d9070fabb25 Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Wed, 11 Sep 2024 13:53:20 +0100 Subject: [PATCH] chore: update node version matrix Reasoning: * Current is 22 * Active is 20 * Maintenance is 18 Any odd-numbered releases and older than 18 are unsupported. See https://nodejs.org/en/about/previous-releases --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57f6ba2e..666ab4f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,11 +17,9 @@ jobs: strategy: matrix: node: - - '19' + - '22' + - '20' - '18' - - '17' - - '16' - - '14' name: Test using node ${{ matrix.node }} steps: - uses: actions/checkout@v3