Skip to content

Commit

Permalink
launch tests with the updated Node.js images
Browse files Browse the repository at this point in the history
Currently, can not use Node.js >= 20.8 because mock-fs used in the unit
tests does not support it. tschaub/mock-fs#384
  • Loading branch information
polomsky committed Mar 6, 2024
1 parent e0a3a3b commit a7cd28b
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,20 @@ executors:
- image: cimg/node:14.21
node-16:
docker:
- image: cimg/node:16.18
- image: cimg/node:16.20
node-18:
docker:
- image: cimg/node:18.12
- image: cimg/node:18.19
node-20:
docker:
- image: cimg/node:20.6
node-20-5:
docker:
- image: cimg/node:20.5
node-20-4:
docker:
- image: cimg/node:20.4
node-20-0:
docker:
- image: cimg/node:20.0

Expand Down Expand Up @@ -66,4 +75,4 @@ workflows:
- build:
matrix:
parameters:
version: ["14", "16", "18", "20"]
version: ["14", "16", "18", "20", "20-5", "20-4", "20-0"]

0 comments on commit a7cd28b

Please sign in to comment.