From fe0e7af033f81a6c7f32b428ceb908e88207e1bd Mon Sep 17 00:00:00 2001 From: orangemug Date: Fri, 19 Jan 2018 15:13:46 +0000 Subject: [PATCH] Added multiple nodejs versions. --- .circleci/config.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1a6bddc..66b40f7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,6 +25,13 @@ templates: path: /tmp/artifacts destination: /artifacts jobs: + build-linux-node-v6: + docker: + # specify the version you desire here + - image: node:6 + - image: selenium/standalone-chrome:3.1.0 + working_directory: ~/repo + steps: *steps build-linux-node-v8: docker: # specify the version you desire here @@ -32,9 +39,19 @@ jobs: - image: selenium/standalone-chrome:3.1.0 working_directory: ~/repo steps: *steps + build-linux-node-v9: + docker: + # specify the version you desire here + - image: node:9 + - image: selenium/standalone-chrome:3.1.0 + working_directory: ~/repo + steps: *steps workflows: version: 2 build: jobs: + - build-linux-node-v6 - build-linux-node-v8 + - build-linux-node-v9 +