From bdd95e10b6a4cce13d2a07aa2535afa09d5167d6 Mon Sep 17 00:00:00 2001 From: yandeu <20306025+yandeu@users.noreply.github.com> Date: Mon, 2 Dec 2024 11:36:49 +0100 Subject: [PATCH] Test nodejs v22 --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3799a60..13fd343 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,18 +9,18 @@ jobs: strategy: # max-parallel: 2 matrix: - node-version: [16, 18, 20] + node-version: [18, 20, 22] os: [ubuntu-latest, windows-latest, macos-latest] # test only nodejs v18 on win and mac exclude: - - os: macos-latest - node-version: 16 - os: macos-latest node-version: 20 - - os: windows-latest - node-version: 16 + - os: macos-latest + node-version: 22 - os: windows-latest node-version: 20 + - os: windows-latest + node-version: 22 steps: - name: Checkout repository