Skip to content

Commit f00c76a

Browse files
committed
Added Node 20 to supported environments
1 parent 5d542df commit f00c76a

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.circleci/config.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,21 @@ orbs:
77
node: circleci/[email protected]
88

99
executors:
10+
node20:
11+
docker:
12+
- image: cimg/node:20.0.0
13+
working_directory: ~/workspace
1014
node18:
1115
docker:
12-
- image: cimg/node:18.0.0 # Latest 18.x
16+
- image: cimg/node:18.0.0
1317
working_directory: ~/workspace
1418
node16:
1519
docker:
16-
- image: cimg/node:16.14.2 # Latest 16.x
20+
- image: cimg/node:16.14.2
1721
working_directory: ~/workspace
1822
node14_latest:
1923
docker:
20-
- image: cimg/node:14.17.4 # Latest 14.x
24+
- image: cimg/node:14.21.3
2125
working_directory: ~/workspace
2226
# 14.8 is the first version with top level await in ES modules.
2327
node14_8:
@@ -31,7 +35,7 @@ executors:
3135
working_directory: ~/workspace
3236
node12_latest:
3337
docker:
34-
- image: cimg/node:12.22.10 # Latest 12.x
38+
- image: cimg/node:12.22.12
3539
working_directory: ~/workspace
3640
# 12.17 is the first version with dynamic import() of commonjs modules
3741
node12_17:
@@ -81,6 +85,7 @@ workflows:
8185
matrix:
8286
parameters:
8387
executor:
88+
- node20
8489
- node18
8590
- node16
8691
- node14_latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Jasmine is compatible with both ES modules and CommonJS modules. See the
5050

5151
## Node version compatibility
5252

53-
Jasmine supports Node 18, 16, 14, and 12.17-12.22.
53+
Jasmine supports Node 20, 18, 16, 14, and 12.17-12.22.
5454

5555
## Support
5656

0 commit comments

Comments
 (0)