From f803c2dc9ac491d3d4d6cf6376116b983de75941 Mon Sep 17 00:00:00 2001 From: KunalOfficial <35455566+developerkunal@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:23:54 +0530 Subject: [PATCH] Update Node.js Version in Pipeline to 22.4.1 Due to Current Version Issues (#926) Update Node.js version in pipeline to 22.4.1 due to issues with the current version --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9b4f1f241..fe3505ae4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ orbs: jobs: e2e_test_as_node_module: docker: - - image: cimg/node:current + - image: cimg/node:22.4.1 working_directory: ~/repo steps: - checkout @@ -15,7 +15,7 @@ jobs: e2e_test_as_cli: docker: - - image: cimg/node:current + - image: cimg/node:22.4.1 working_directory: ~/repo steps: - checkout @@ -66,9 +66,9 @@ jobs: name: Publish package command: npm publish - does_typescript_compile: + does_typescript_compile: docker: - - image: cimg/node:current + - image: cimg/node:22.4.1 working_directory: ~/repo steps: - checkout @@ -97,7 +97,7 @@ workflows: v: "lts" - unit_test: name: Unit tests with Node current - v: "current" + v: "22.4.1" test_and_deploy: jobs: