Skip to content

Commit

Permalink
chore: test on node 13
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Oct 26, 2019
1 parent 3ceacec commit 78e7e42
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .circleci/config.yml
Expand Up @@ -55,14 +55,14 @@ jobs:
- run: *install
- save-cache: *save-cache
- run:
command: yarn test-ci
command: yarn test-ci-partial
- store_test_results:
path: reports/junit

test-jest-circus:
working_directory: ~/jest
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- restore-cache: *restore-cache
Expand All @@ -77,6 +77,20 @@ jobs:
working_directory: ~/jest
docker:
- image: circleci/node:12
steps:
- checkout
- restore-cache: *restore-cache
- run: *install
- save-cache: *save-cache
- run:
command: yarn test-ci
- store_test_results:
path: reports/junit

test-node-13:
working_directory: ~/jest
docker:
- image: circleci/node:13
steps:
- checkout
- restore-cache: *restore-cache
Expand All @@ -90,7 +104,7 @@ jobs:
test-browser:
working_directory: ~/jest
docker:
- image: circleci/node:10-browsers
- image: circleci/node:12-browsers
steps:
- checkout
- restore-cache: *restore-cache
Expand All @@ -101,7 +115,7 @@ jobs:
test-or-deploy-website:
working_directory: ~/jest
docker:
- image: circleci/node:10
- image: circleci/node:12
resource_class: large
steps:
- checkout
Expand All @@ -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:
Expand Down

0 comments on commit 78e7e42

Please sign in to comment.