From 24e008eb3cb598fcd522d51cd81e062e44c9b3ee Mon Sep 17 00:00:00 2001 From: Shawn McKnight Date: Sat, 7 Nov 2020 16:15:40 -0500 Subject: [PATCH] Update ci (#139) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR updates the CircleCI configuration. The following changes were made: Update to latest node orb Update matrix of node versions to latest of each tested version Add 15.x to node matrix Change base docker image since npm wouldn't install with the node executor 🤷 Note: Node 12.x tests should be removed on approximately 11/30 when it moves to maintenance. --- .circleci/config.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9177888b..1f82708b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,10 @@ version: 2.1 orbs: - node: circleci/node@3.0.1 + node: circleci/node@4.1.0 jobs: test: - executor: node/default + docker: + - image: cimg/base:stable parameters: node-version: type: string @@ -34,6 +35,7 @@ workflows: matrix: parameters: node-version: - - 12.18.0 + - 12.19.0 - 13.14.0 - - 14.5.0 + - 14.15.0 + - 15.1.0