This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-12-01 12:59:59 +00:00
|
|
|
trigger:
|
2020-12-01 13:59:25 +00:00
|
|
|
- master
|
2020-12-01 12:59:59 +00:00
|
|
|
|
|
|
|
stages:
|
|
|
|
- stage: link
|
|
|
|
jobs:
|
|
|
|
- job: lint
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
|
|
|
versionSpec: '12.x'
|
|
|
|
displayName: 'Install Node.js'
|
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'install'
|
|
|
|
workingDir: 'web/'
|
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'custom'
|
|
|
|
workingDir: 'web/'
|
|
|
|
customCommand: 'run lint'
|
|
|
|
- stage: Build
|
|
|
|
jobs:
|
|
|
|
- job: build
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
|
|
|
versionSpec: '12.x'
|
|
|
|
displayName: 'Install Node.js'
|
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'install'
|
|
|
|
workingDir: 'web/'
|
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'custom'
|
|
|
|
workingDir: 'web/'
|
|
|
|
customCommand: 'run build'
|