From fcba07498375a2f0826c68deb6c9a0bd9de635a0 Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Wed, 27 Sep 2023 10:14:03 -0400 Subject: [PATCH] chore: remove node19 from ci (#223) Removing deprecated node19 version from CI since it's currently having problems to run on GitHub actions. Refs: https://github.com/actions/setup-node/issues/838 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 964f2fa..60e5f85 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,7 +34,7 @@ jobs: name: Unit tests strategy: matrix: - node-version: [v14.x, v16.x, v18.x, v19.x] + node-version: [v14.x, v16.x, v18.x] os: [ubuntu-latest, macos-latest, windows-latest] exclude: - os: windows-latest @@ -128,7 +128,7 @@ jobs: name: System tests strategy: matrix: - node-version: [v14.x, v16.x, v18.x, v19.x] + node-version: [v14.x, v16.x, v18.x] os: [ubuntu-latest, macos-latest, windows-latest] exclude: - os: windows-latest