From 313d2832e0019afb471bca1e4a2d4459172bac4e Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Fri, 7 Jul 2023 17:20:16 +1000 Subject: [PATCH] chore!: drop node 14.x support, add 18.x and current --- .github/workflows/test-and-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 1b21815..d153862 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - node: [14.x, 16.x, lts/*] + node: [16.x, 18.x, lts/*, current] os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -34,7 +34,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3.6.0 with: - node-version: 16 + node-version: lts/* - name: Install dependencies run: | npm install --no-progress --no-package-lock --no-save