More fixes

This commit is contained in:
Core 2023-05-09 21:41:53 +01:00
parent ae82ea64d1
commit 8d1dba2977
No known key found for this signature in database

View file

@ -38,12 +38,12 @@ jobs:
path: $(YARN_CONFIG_CACHE) path: $(YARN_CONFIG_CACHE)
displayName: Cache yarn displayName: Cache yarn
# Install dependencies (frozen-lockfile for non-PR builds) # Install dependencies (immutable for non-PR builds)
- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}: - ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- script: yarn --immutable - script: yarn install --immutable
displayName: "Install Dependencies" displayName: "Install Dependencies"
- ${{ if eq(variables['Build.Reason'], 'PullRequest') }}: - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
- script: yarn - script: yarn install
displayName: "Install Dependencies" displayName: "Install Dependencies"
- script: yarn dist:linux - script: yarn dist:linux
@ -88,12 +88,12 @@ jobs:
path: $(YARN_CONFIG_CACHE) path: $(YARN_CONFIG_CACHE)
displayName: Cache yarn displayName: Cache yarn
# Install dependencies (frozen-lockfile for non-PR builds) # Install dependencies (immutable for non-PR builds)
- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}: - ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- script: yarn --immutable - script: yarn install --immutable
displayName: "Install Dependencies" displayName: "Install Dependencies"
- ${{ if eq(variables['Build.Reason'], 'PullRequest') }}: - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
- script: yarn - script: yarn install
displayName: "Install Dependencies" displayName: "Install Dependencies"
- script: yarn dist:win - script: yarn dist:win