From 3525e6e8a7bc02dc31520e90f160ce07675a0033 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Fri, 7 Dec 2018 06:41:37 +0100 Subject: [PATCH] chore: add node 11 to circleci (#1153) --- .circleci/config.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ce6ea70bc..91256ad8c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,9 @@ aliases: - &node10_executor docker: - image: circleci/node:10 + - &node11_executor + docker: + - image: circleci/node:11 - &default_executor <<: *node9_executor - &repo_key @@ -137,6 +140,17 @@ jobs: yarn run test yarn test:functional + test_node11: + <<: *defaults + <<: *node10_executor + steps: + - *restore_repo + - run: + name: Test with Node 11 + command: | + yarn run test + yarn test:functional + test_e2e: <<: *defaults <<: *node9_browser_executor @@ -209,6 +223,10 @@ workflows: requires: - prepare <<: *ignore_non_dev_branches + - test_node11: + requires: + - prepare + <<: *ignore_non_dev_branches - test_e2e: requires: - prepare @@ -223,6 +241,7 @@ workflows: - test_node8 - test_node9 - test_node10 + - test_node11 - test_e2e - test_size <<: *ignore_non_dev_branches