From ead31ef5263575a0232219a328eb52792437dcaf Mon Sep 17 00:00:00 2001 From: John Wiseheart Date: Wed, 18 Jul 2018 11:58:36 -0700 Subject: [PATCH 1/2] Add new tests to workflows --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4539f23f150..02ea43e1bc0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -142,6 +142,12 @@ workflows: - test2.8: requires: - build + - test2.9: + requires: + - build + - test3.0: + requires: + - build - testNext: requires: - build From ee036b78de181c8b775a1aba673067dae2145241 Mon Sep 17 00:00:00 2001 From: John Wiseheart Date: Wed, 18 Jul 2018 12:01:22 -0700 Subject: [PATCH 2/2] Add RC instead of 3.0 --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 02ea43e1bc0..adf50b42cb2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -96,7 +96,7 @@ jobs: key: dependency-cache-{{ checksum "yarn.lock" }} - run: yarn add typescript@2.9 - run: yarn test - test3.0: + testRc: docker: - image: circleci/node:6 steps: @@ -105,7 +105,7 @@ jobs: at: '.' - restore_cache: key: dependency-cache-{{ checksum "yarn.lock" }} - - run: yarn add typescript@3.0 + - run: yarn add typescript@rc - run: yarn test testNext: docker: @@ -145,7 +145,7 @@ workflows: - test2.9: requires: - build - - test3.0: + - testRc: requires: - build - testNext: