From 54ab6a5de0029978d12cbd50617f03e9b3aeda33 Mon Sep 17 00:00:00 2001 From: Jay Hilton <34135923+aleph-oh@users.noreply.github.com> Date: Fri, 5 Jan 2024 11:53:33 -0500 Subject: [PATCH] update CI matrix to exclude node 14 package.json specifies node >= 15 so I've removed node 14 and added a few more relevant node versions --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3c7deb7..34b1f73 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [15, 14] + node-version: [15, 16, 18] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v2