From c6199227dd796cad1cc9b2b52a633859e80c39d4 Mon Sep 17 00:00:00 2001 From: RasPhilCo Date: Tue, 1 Oct 2019 13:28:20 -0700 Subject: [PATCH] chore: update to node-12 (#88) --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 51011d50..0411f5d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,19 +19,19 @@ jobs: $NYC yarn test $NYC report --reporter text-lcov > coverage.lcov curl -s https://codecov.io/bash | bash - node-10: + node-12: <<: *test docker: - - image: node:10 - node-8: + - image: node:12 + node-10: <<: *test docker: - - image: node:8 + - image: node:10 workflows: version: 2 "@oclif/config": jobs: - node-latest + - node-12 - node-10 - - node-8