More fixes
This commit is contained in:
parent
ae82ea64d1
commit
8d1dba2977
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue