Skip to content

Commit

Permalink
build: run tests on node v15 (#10672)
Browse files Browse the repository at this point in the history
  • Loading branch information
aladdin-add committed Oct 21, 2020
1 parent 3e48741 commit 69ae5b5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion .circleci/config.yml
Expand Up @@ -83,6 +83,20 @@ 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

test-or-deploy-website:
working_directory: ~/jest
executor: node/default
Expand All @@ -105,7 +119,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
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 13.x, 14.x]
node-version: [10.x, 12.x, 13.x, 14.x, 15.x]
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 69ae5b5

Please sign in to comment.