From f1c1c9deeacd712c693c87c3c7206a15ab950302 Mon Sep 17 00:00:00 2001 From: Nicholas Addison Date: Sat, 12 Aug 2023 15:33:34 +1000 Subject: [PATCH] chore: CI unit tests now supports Node 16, 18 and 20 --- .github/workflows/unit-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 2405b018..3392e677 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -8,9 +8,9 @@ jobs: node-version: [16.x, 18.x, 20.x] runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.platform }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: npm install