From 4bafaac843e94ef17cc97bff5f6d1f8396971703 Mon Sep 17 00:00:00 2001 From: hannes Date: Sat, 13 Jun 2020 14:57:56 +0800 Subject: [PATCH] chore: add node 13/14 to circle-ci jobs (#1937) --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ee75a34cf5..efaff23490 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,6 +91,16 @@ jobs: - image: node:12 steps: - run-all + v13: + docker: + - image: node:13 + steps: + - run-all + v14: + docker: + - image: node:14 + steps: + - run-all windows-v12: executor: win/default steps: @@ -102,4 +112,6 @@ workflows: - v8 - v10 - v12 + - v13 + - v14 - windows-v12