From 41d52f39c8e7e45085541178fa7dc29011d0dbb2 Mon Sep 17 00:00:00 2001 From: Randall Date: Fri, 12 May 2023 23:22:59 -0400 Subject: [PATCH] Stop testing on Node 12 and 19, start testing on 16 and 20. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0adf10f..9cef578 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,11 @@ jobs: strategy: matrix: - node-version: [12.x, 18.x, 19.x] + node-version: [16.x, 18.x, 20.x] steps: - uses: actions/checkout@v2 - - name: Use Node.js 18.x + - name: Use Node.js uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }}