From 07856e8edf830fca2305c404462d26a6cb0b3d76 Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Sat, 3 Jun 2023 13:56:21 -0400 Subject: [PATCH] ci: stop testing against NodeJS v14, v16 (#524) BREAKING CHANGE: Drop support for NodeJS v14, v16 --- .github/workflows/test.yml | 3 +-- package.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c433cf..6fa4ae9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,9 +13,8 @@ jobs: strategy: matrix: node_version: - - 14 - - 16 - 18 + - 20 steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node_version }} diff --git a/package.json b/package.json index deb5a32..709ea56 100644 --- a/package.json +++ b/package.json @@ -92,6 +92,6 @@ ] }, "engines": { - "node": ">= 14" + "node": ">= 18" } }