From ac2a42f4867b11a1751fb747f860a37f4ceac9b4 Mon Sep 17 00:00:00 2001 From: Tarun Ramsinghani <2929463+tarunramsinghani@users.noreply.github.com> Date: Thu, 30 Jan 2025 13:18:52 +0530 Subject: [PATCH] Migrating to Node20 and latest version of npm. --- .azure-pipelines/azure-pipeline.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.azure-pipelines/azure-pipeline.yml b/.azure-pipelines/azure-pipeline.yml index 71a62bd1..a8060f5a 100644 --- a/.azure-pipelines/azure-pipeline.yml +++ b/.azure-pipelines/azure-pipeline.yml @@ -44,16 +44,16 @@ extends: clean: true - task: NodeTool@0 - displayName: Use node 10 + displayName: Use node 20 inputs: - versionSpec: "10.x" + versionSpec: "20.x" - task: NpmAuthenticate@0 inputs: workingFile: .npmrc - - script: npm i -g npm@6.14.12 --force - displayName: Use npm version 6.14.12 + - script: npm i -g npm@10.9.2 --force + displayName: Use npm version 10.9.2 - bash: | npm ci