Skip to content

Commit

Permalink
chore: run CircleCI on node 14 (#9870)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Apr 23, 2020
1 parent 554e1ac commit a154014
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .circleci/config.yml
Expand Up @@ -90,6 +90,20 @@ jobs:
- store_test_results:
path: reports/junit

test-node-14:
working_directory: ~/jest
docker:
- image: circleci/node:14
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:
Expand Down Expand Up @@ -123,7 +137,8 @@ workflows:
- test-node-8
- test-node-10
- test-node-12
- test-node-13 # current
- test-node-13
- test-node-14 # current
- test-jest-circus
- test-browser
- test-or-deploy-website:
Expand Down

0 comments on commit a154014

Please sign in to comment.