From fa46cdb9ddf25b697866a6d45dc3f29c8f3a7054 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 2 May 2018 10:34:45 +0200 Subject: [PATCH] Test with Node 10 on CI (#6097) * test on node 10 * Update config.yml --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 599976b00f3e..1e7d387bc6a3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,6 +44,17 @@ jobs: - save-cache: *save-cache - run: yarn run test-ci-es5-build-in-browser + test-node-10: + working_directory: ~/jest + docker: + - image: circleci/node:10 + steps: + - checkout + - restore-cache: *restore-cache + - run: yarn --no-progress + - save-cache: *save-cache + - run: yarn run test-ci-partial + test-node-9: working_directory: ~/jest docker: @@ -95,6 +106,7 @@ workflows: jobs: - test-node-8 - test-node-6 + - test-node-10 - test-node-9 - test-browser - test-and-deploy-website