From 554476addfb574e6feda82dc4b5d10376bc9d4a6 Mon Sep 17 00:00:00 2001 From: Brian Donovan <1938+eventualbuddha@users.noreply.github.com> Date: Sat, 28 Dec 2019 13:08:24 +0000 Subject: [PATCH] test(ci): update node versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Node v8.x is about to be EOL’d, and Node v13.x is available now. --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a3bcb124d..d143387e1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,10 +28,6 @@ aliases: version: 2 jobs: - node-v8-latest: - docker: - - image: circleci/node:8 - <<: *unit_test node-v10-latest: docker: - image: circleci/node:10 @@ -44,6 +40,10 @@ jobs: docker: - image: circleci/node:12 <<: *unit_test + node-v13-latest: + docker: + - image: circleci/node:13 + <<: *unit_test deploy: docker: - image: circleci/node:latest @@ -60,16 +60,16 @@ workflows: version: 2 test-deploy: jobs: - - node-v8-latest - node-v10-latest - node-v11-latest - node-v12-latest + - node-v13-latest - deploy: requires: - - node-v8-latest - node-v10-latest - node-v11-latest - node-v12-latest + - node-v13-latest filters: branches: only: master