Skip to content

Commit

Permalink
Improve azure script
Browse files Browse the repository at this point in the history
  • Loading branch information
iamvishnusankar committed Aug 9, 2023
1 parent 0c16f87 commit 6213586
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions azure-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ steps:

# Set yarn version
- task: Bash@3
displayName: 'Install'
displayName: 'Set yarn version'
inputs:
targetType: 'inline'
script: 'yarn set version stable'
Expand All @@ -45,19 +45,19 @@ steps:
targetType: 'inline'
script: 'yarn install --immutable --immutable-cache'

# Build
# Test
- task: Bash@3
displayName: 'Build'
displayName: 'Test'
inputs:
targetType: 'inline'
script: 'yarn workspace next-sitemap build && yarn workspace next-sitemap postbuild'
script: 'yarn test --ci'

# Test
# Build
- task: Bash@3
displayName: 'Test'
displayName: 'Build'
inputs:
targetType: 'inline'
script: 'yarn test --ci'
script: 'yarn workspace next-sitemap build && yarn workspace next-sitemap postbuild'

# Copy README
- task: Bash@3
Expand Down

0 comments on commit 6213586

Please sign in to comment.