Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Add new tests to workflows (#4054)
Browse files Browse the repository at this point in the history
* Add new tests to workflows

* Add RC instead of 3.0
  • Loading branch information
johnwiseheart authored Jul 18, 2018
1 parent 13eb091 commit ce592de
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -142,6 +142,12 @@ workflows:
- test2.8:
requires:
- build
- test2.9:
requires:
- build
- testRc:
requires:
- build
- testNext:
requires:
- build

0 comments on commit ce592de

Please sign in to comment.