circleci: Switch to alpine and add more versions

master
Jonatan Nilsson 2021-06-23 09:41:27 +00:00
parent f43d81a2cd
commit 129e50367d
1 changed files with 7 additions and 1 deletions

View File

@ -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