From b75ffac3d2d4e164112adeb210af0abba68583f2 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Mon, 8 Sep 2025 16:08:05 +0200 Subject: [PATCH] sets node version --- .azure-pipelines/publish-stable.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.azure-pipelines/publish-stable.yml b/.azure-pipelines/publish-stable.yml index e85285ad..56d4b124 100644 --- a/.azure-pipelines/publish-stable.yml +++ b/.azure-pipelines/publish-stable.yml @@ -39,6 +39,12 @@ extends: testPlatforms: [] skipAPIScan: true # package build requires Linux buildSteps: + - task: NodeTool@0 + inputs: + versionSource: fromFile + versionFilePath: .nvmrc + nodejsMirror: https://github.com/joaomoreno/node-mirror/releases/download + - script: sudo apt install -y libkrb5-dev displayName: Install libkrb5-dev @@ -59,6 +65,12 @@ extends: testPlatforms: [] skipAPIScan: true # package build requires Linux buildSteps: + - task: NodeTool@0 + inputs: + versionSource: fromFile + versionFilePath: .nvmrc + nodejsMirror: https://github.com/joaomoreno/node-mirror/releases/download + - script: npm ci displayName: Install NPM dependencies