From 8d1dba29778c51671b84bd634cee9fd69730ca35 Mon Sep 17 00:00:00 2001 From: Core <64542347+coredev-uk@users.noreply.github.com> Date: Tue, 9 May 2023 21:41:53 +0100 Subject: [PATCH] More fixes --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index afa19cfe..3db4ba3a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -38,12 +38,12 @@ jobs: path: $(YARN_CONFIG_CACHE) displayName: Cache yarn - # Install dependencies (frozen-lockfile for non-PR builds) + # Install dependencies (immutable for non-PR builds) - ${{ if ne(variables['Build.Reason'], 'PullRequest') }}: - - script: yarn --immutable + - script: yarn install --immutable displayName: "Install Dependencies" - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}: - - script: yarn + - script: yarn install displayName: "Install Dependencies" - script: yarn dist:linux @@ -88,12 +88,12 @@ jobs: path: $(YARN_CONFIG_CACHE) displayName: Cache yarn - # Install dependencies (frozen-lockfile for non-PR builds) + # Install dependencies (immutable for non-PR builds) - ${{ if ne(variables['Build.Reason'], 'PullRequest') }}: - - script: yarn --immutable + - script: yarn install --immutable displayName: "Install Dependencies" - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}: - - script: yarn + - script: yarn install displayName: "Install Dependencies" - script: yarn dist:win