From cbaf31d79fe7c480a872f883efc4aa20e628f5ba Mon Sep 17 00:00:00 2001 From: Paul Rodwell Date: Thu, 15 Feb 2024 15:29:30 +0000 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5229477..00343ad 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,13 +14,14 @@ jobs: matrix: # Releases https://github.com/nodejs/release#release-schedule node-version: - - 18.x # LTS - - 19.x # Current + - 18.x # Maintenance + - 20.x # LTS + - 21.x # Current steps: - - uses: actions/checkout@v3 + - 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 }} - run: npm ci