From 4bdba7bc27a9cfc3d4387dfff46a47c87c4d7bf9 Mon Sep 17 00:00:00 2001 From: Tim Dawborn Date: Wed, 25 Oct 2023 11:20:45 +1100 Subject: [PATCH] Revert "Remove Node 20 again." This reverts commit a84560d405d2f70a50d4c4b443c2c8ec5ac9519f. --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9b1148c5..c175ea2d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,6 +19,12 @@ executors: resource_class: small working_directory: ~/repo + node20: + docker: + - image: cimg/node:20.4.0 + resource_class: small + working_directory: ~/repo + commands: install-dependencies: @@ -68,6 +74,11 @@ jobs: steps: - run-tests + test-node20: + executor: node20 + steps: + - run-tests + build-and-run: executor: node14 steps: @@ -123,6 +134,10 @@ workflows: filters: tags: only: /^v[0-9]+\.[0-9]+\.[0-9]+$/ + - test-node20: + filters: + tags: + only: /^v[0-9]+\.[0-9]+\.[0-9]+$/ - build-and-run: filters: tags: @@ -136,6 +151,7 @@ workflows: - test-node14 - test-node16 - test-node18 + - test-node20 - build-and-run - lint-check filters: