From 6bcb621a6f91f043d8a7d530b5bcf17ae4701212 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Thu, 24 Oct 2019 10:37:48 +0200 Subject: [PATCH] chore: test on node 13 --- .circleci/config.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 94894e5dc858..de2c2fbafcc8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -87,6 +87,20 @@ jobs: - store_test_results: path: reports/junit + test-node-13: + working_directory: ~/jest + docker: + - image: circleci/node:13 + steps: + - checkout + - restore-cache: *restore-cache + - run: *install + - save-cache: *save-cache + - run: + command: yarn test-ci-partial + - store_test_results: + path: reports/junit + test-browser: working_directory: ~/jest docker: @@ -120,7 +134,8 @@ workflows: - lint-and-typecheck - test-node-8 - test-node-10 - - test-node-12 # current + - test-node-12 + - test-node-13 # current - test-jest-circus - test-browser - test-or-deploy-website: