From 4ac4b429bef07be030b8b0827450363480aa7ba7 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Wed, 3 May 2023 14:45:59 -0700 Subject: [PATCH] test: drop node 14 from RC tests now that it is EOL Also add v21 because at some point there may be an RC for a v21.0.0 release. --- .github/workflows/edge.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/edge.yml b/.github/workflows/edge.yml index ccb03cdf52..b14bbcb745 100644 --- a/.github/workflows/edge.yml +++ b/.github/workflows/edge.yml @@ -45,8 +45,9 @@ jobs: env: ELASTIC_APM_CONTEXT_MANAGER: ${{ matrix.contextManager }} - # This should list all the Node.js major versions listed at: - # https://nodejs.org/en/about/releases/ + # This should list all the Node.js major versions listed at + # https://nodejs.org/en/about/releases/, plus the next version (for which + # nightlies are currently being built). # # The node.js project *sometimes* produces "rc" builds leading up to a new # release. They get uploaded to: https://nodejs.org/download/rc/ @@ -57,11 +58,11 @@ jobs: fail-fast: false matrix: node: + - "21" - "20" - "19" - "18" - "16" - - "14" contextManager: [ 'patch', '' ] steps: - uses: actions/checkout@v3