Skip to content

Commit 69ae5b5

Browse files
authored
build: run tests on node v15 (#10672)
1 parent 3e48741 commit 69ae5b5

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.circleci/config.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,20 @@ jobs:
8383
- store_test_results:
8484
path: reports/junit
8585

86+
test-node-15:
87+
working_directory: ~/jest
88+
executor: node/default
89+
steps:
90+
- checkout
91+
- node/install:
92+
node-version: '15'
93+
install-npm: false
94+
- node/install-packages: *install
95+
- run:
96+
command: yarn test-ci-partial
97+
- store_test_results:
98+
path: reports/junit
99+
86100
test-or-deploy-website:
87101
working_directory: ~/jest
88102
executor: node/default
@@ -105,7 +119,8 @@ workflows:
105119
- test-node-10
106120
- test-node-12
107121
- test-node-13
108-
- test-node-14 # current
122+
- test-node-14
123+
- test-node-15 # current
109124
- test-jest-circus
110125
- test-or-deploy-website:
111126
filters: *filter-ignore-gh-pages

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
strategy:
5555
fail-fast: false
5656
matrix:
57-
node-version: [10.x, 12.x, 13.x, 14.x]
57+
node-version: [10.x, 12.x, 13.x, 14.x, 15.x]
5858
os: [ubuntu-latest, macOS-latest, windows-latest]
5959
runs-on: ${{ matrix.os }}
6060

0 commit comments

Comments
 (0)