From ebd5e39af9f19c4f3aebc13f211b42dfbaeb7236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Polomsk=C3=BD?= Date: Mon, 30 Oct 2023 16:22:50 +0100 Subject: [PATCH] launch tests with the updated Node.js images Currently, can not use Node.js >= 20.8 because mock-fs used in the unit tests does not support it. https://github.com/tschaub/mock-fs/issues/384 --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 462f9b37..e7b39ae4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,13 +10,13 @@ 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.0 + - image: cimg/node:20.4 jobs: build: