Skip to content

Commit

Permalink
release: try release
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Dec 8, 2023
1 parent 1639b9f commit 00ff6bc
Showing 1 changed file with 18 additions and 26 deletions.
44 changes: 18 additions & 26 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,15 @@ pool:
vmImage: 'ubuntu-latest'

stages:
- stage: env
- stage: build
jobs:
- job: Nodes
- job: build
steps:
- task: NodeTool@0
inputs:
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
displayName: 'Install Node.js'

- stage: build
jobs:
- job: build
steps:
- task: UseNode@1
inputs:
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
- script: |
node --version
yarn --version
Expand Down Expand Up @@ -68,10 +59,11 @@ stages:
dependsOn: Build
condition: failed()
steps:
- task: UseNode@1
- task: NodeTool@0
inputs:
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
displayName: 'Install Node.js'
- checkout: self
displayName: 'Checkout'
clean: true
Expand All @@ -84,16 +76,16 @@ stages:
env:
ACCESS_REPO: $(ACCESS_REPO)
ACCESS_TOKEN: $(ACCESS_TOKEN)
dependsOn: env
- stage: test
jobs:
- job: packages
steps:
- task: UseNode@1
- task: NodeTool@0
inputs:
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
displayName: 'Install Node.js'
- script: yarn install
displayName: 'Install'
- script: |
Expand Down Expand Up @@ -122,24 +114,24 @@ stages:
testResultsFiles: '**/TESTS*.xml'
- job: cli
steps:
- task: UseNode@1
- task: NodeTool@0
inputs:
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
displayName: 'Install Node.js'
- script: yarn install
displayName: 'Install'
- script: yarn run test:cli
dependsOn: env

- stage: lint
jobs:
- job: packages
steps:
- task: UseNode@1
- task: NodeTool@0
inputs:
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
versionSource: 'fromFile'
versionFilePath: '.nvmrc'
displayName: 'Install Node.js'
- script: yarn install
displayName: 'Install'
- script: yarn run lint
dependsOn: env

0 comments on commit 00ff6bc

Please sign in to comment.