From 2429cb99db0aea52c966b7ce265f9bc26e6e6db9 Mon Sep 17 00:00:00 2001 From: Daniel Perez Alvarez Date: Tue, 6 Aug 2024 15:55:39 -0400 Subject: [PATCH] ci: add node 22 to the test matrix --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8094a2f8..14e78b06 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,14 +1,14 @@ name: Node.js CI -on: [ push, pull_request ] +on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-latest ] - node-version: [ 18, 20, 21 ] + os: [ubuntu-latest, windows-latest, macos-latest] + node-version: [18, 20, 22] steps: - name: Checkout