From d25264de85598ee6b41d833140df9acfc57706e3 Mon Sep 17 00:00:00 2001 From: Hans Klunder Date: Mon, 9 May 2022 10:54:22 +0200 Subject: [PATCH] chore: update CI to Node 14, 16 and 18 (#51) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a006ae5..3c14f02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [10.x, 12.x, 13.x] + node-version: [14.x, 16.x, 18.x] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Use Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }}