From 129e50367d5456b508c27390acfa7153dd4659bc Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Wed, 23 Jun 2021 09:41:27 +0000 Subject: [PATCH] circleci: Switch to alpine and add more versions --- .circleci/config.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bea7229..b9ad934 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,7 +16,12 @@ commands: jobs: node-v14: docker: - - image: node:14 + - image: node:14-alpine + steps: + - test-nodejs + node-v16: + docker: + - image: node:16-alpine steps: - test-nodejs @@ -25,3 +30,4 @@ workflows: node-multi-build: jobs: - node-v14 + - node-v16