From 14637e1c78d164fb9eaf32a45e89980e65fc79fd Mon Sep 17 00:00:00 2001 From: Ed Preston Date: Fri, 27 Oct 2023 21:48:12 +1100 Subject: [PATCH] Update ci.yml update to actions/setup-node@v4 Add new node LTS to test matrix. --- .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 7472923..ec36293 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,13 +31,13 @@ jobs: strategy: matrix: - node-version: [18.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm'