From 1d8c859c03c8172de5945f03bcea4bbef0259a17 Mon Sep 17 00:00:00 2001 From: Vishnu Sankar <4602725+iamvishnusankar@users.noreply.github.com> Date: Wed, 1 Nov 2023 19:34:28 +0530 Subject: [PATCH] Update azure-pipeline --- azure-pipeline.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/azure-pipeline.yml b/azure-pipeline.yml index 6cc99669..fe487a9c 100644 --- a/azure-pipeline.yml +++ b/azure-pipeline.yml @@ -1,4 +1,4 @@ -name: 4.2$(rev:.r) +name: 4.3$(rev:.r) trigger: branches: include: @@ -12,14 +12,14 @@ steps: - task: UseNode@1 displayName: Setup Node inputs: - version: '16.x' + version: '20.x' # Set yarn version - - task: Bash@3 - displayName: 'Set yarn version' - inputs: - targetType: 'inline' - script: 'yarn set version stable' + # - task: Bash@3 + # displayName: 'Set yarn version' + # inputs: + # targetType: 'inline' + # script: 'yarn set version stable' # Authenticate - task: npmAuthenticate@0 @@ -41,7 +41,7 @@ steps: displayName: 'Install' inputs: targetType: 'inline' - script: 'yarn install --immutable --immutable-cache' + script: 'yarn install' # Test - task: Bash@3