From 2e25ca023e545354f4797c20e04487773daa9327 Mon Sep 17 00:00:00 2001 From: Mouhcine Date: Thu, 30 Nov 2023 16:10:14 +0100 Subject: [PATCH] fixed: yarn instead of npm --- azure-pipelines.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 676233a..9ceb85e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,10 +12,9 @@ pool: steps: - task: NodeTool@0 inputs: - versionSpec: '10.x' + versionSpec: '14.x' displayName: 'Install Node.js' - script: | - npm install - npm run build - displayName: 'npm install and build' + yarn install + displayName: 'yarn install'