From 889a4caa3752dabf47a974b1878c8e96d5da2a26 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Wed, 4 Oct 2023 11:11:41 +0530 Subject: [PATCH] deps: upgrade the node version to 16 the reasoning for choosing the node 16 is because it supports angular version 13, 14 and 15. We have angular 13 in the pacific Signed-off-by: Nizamudeen A --- scripts/dashboard/install-e2e-test-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dashboard/install-e2e-test-deps.sh b/scripts/dashboard/install-e2e-test-deps.sh index ee4a21ab2..30f200a2c 100644 --- a/scripts/dashboard/install-e2e-test-deps.sh +++ b/scripts/dashboard/install-e2e-test-deps.sh @@ -7,7 +7,7 @@ if [[ ! $(arch) =~ (i386|x86_64|amd64) ]]; then fi if grep -q debian /etc/*-release; then - NODEJS_MAJOR_VERSION=14 + NODEJS_MAJOR_VERSION=16 DISTRO="$(lsb_release -cs)" if [[ ! $(command -v node) || $(node --version | grep -oE "v([0-9])+" | cut -c 2-) < ${NODEJS_MAJOR_VERSION} ]]; then sudo apt-get purge nodejs -y