From baf9ba9f59aa8f6790e3b94cdf20cd541dc23073 Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Wed, 27 Sep 2023 09:52:38 -0400 Subject: [PATCH] chore: remove node19 from CI 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 964f2fa3..510b84fa 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