From 6a5a8747f108f407d36a007f802ebbdc67e1a18d Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Wed, 28 Aug 2024 13:10:17 -0700 Subject: [PATCH] ci: test with node 22 Related to https://github.com/parcel-bundler/parcel/issues/9926 --- .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 14cfac25dc6..4103c5a9f4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: name: Unit tests (${{ matrix.os }}, Node ${{ matrix.node }}) strategy: matrix: - node: [18, 20] + node: [18, 20, 22] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -98,7 +98,7 @@ jobs: name: Integration tests (${{ matrix.version == 'v3' && 'v3, ' || '' }}${{ matrix.os }}, Node ${{ matrix.node }}) strategy: matrix: - node: [18, 20] + node: [18, 20, 22] os: [ubuntu-latest, macos-latest, windows-latest] version: [v2, v3] # These tend to be quite flakey, so one failed instance shouldn't stop