Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: run tests on node v15 #10672

Merged
merged 3 commits into from Oct 21, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 17 additions & 1 deletion .circleci/config.yml
Expand Up @@ -83,6 +83,21 @@ jobs:
- store_test_results:
path: reports/junit

test-node-15:
working_directory: ~/jest
executor: node/default
steps:
- checkout
- node/install:
node-version: '15'
install-npm: false
- node/install-packages: *install
- run:
command: yarn test-ci-partial
- store_test_results:
path: reports/junit

SimenB marked this conversation as resolved.
Show resolved Hide resolved

test-or-deploy-website:
working_directory: ~/jest
executor: node/default
Expand All @@ -105,7 +120,8 @@ workflows:
- test-node-10
- test-node-12
- test-node-13
- test-node-14 # current
- test-node-14
- test-node-15 # current
- test-jest-circus
- test-or-deploy-website:
filters: *filter-ignore-gh-pages