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