From c21a8eee7b02f489e0d730a9355fba5280fcb788 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Wed, 5 Jun 2024 23:49:20 +0300 Subject: [PATCH] include Node.js v20 in CI tests (#5827) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7570b0f0f23..5dfdd5a9a75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: test: strategy: matrix: - node: [ '0.10', '0.12', '4', '6', '8', '10', '12', '14', '16', '18' ] + node: [ '0.10', '0.12', '4', '6', '8', '10', '12', '14', '16', '18', '20' ] os: [ ubuntu-latest, windows-latest ] script: [ compress, mocha, release/benchmark, release/jetstream ] name: ${{ matrix.node }} ${{ matrix.os }} ${{ matrix.script }}