From e1ab8101663be3e196c8da3216e62e4f0b327ea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladimir=20Vrzi=C4=87?= Date: Thu, 24 Oct 2024 17:44:57 +0200 Subject: [PATCH] Added node 23 environment to GitHub Actions workflow --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ca009d4..0d17719 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: virtual-environment: ['ubuntu-latest', 'windows-2019'] - node: [12, 14, 16, 18, 20, 22] + node: [12, 14, 16, 18, 20, 22, 23] include: - virtual-environment: 'macos-latest' node: 18 @@ -17,6 +17,8 @@ jobs: node: 20 - virtual-environment: 'macos-latest' node: 22 + - virtual-environment: 'macos-latest' + node: 23 runs-on: ${{ matrix.virtual-environment }}