From 23ae416c01d0d0fb62cfee0e7db0f473bfcdeff6 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Sun, 2 Apr 2023 18:03:05 -0400 Subject: [PATCH] ci: Update to currently supported Node.js versions --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70b21d8b..f33583aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,13 +13,17 @@ jobs: strategy: matrix: - node-version: [ '12', '14' ] + node-version: + - 14 + - 16 + - 18 + - 19 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }}