62 строки
1.2 KiB
YAML
62 строки
1.2 KiB
YAML
pool:
|
|
vmImage: "Ubuntu 20.04"
|
|
|
|
variables:
|
|
Codeql.Enabled: true
|
|
|
|
trigger:
|
|
- master
|
|
- release
|
|
- develop
|
|
|
|
steps:
|
|
- checkout: self
|
|
submodules: true
|
|
- task: Npm@1
|
|
displayName: "npm ci"
|
|
inputs:
|
|
command: ci
|
|
verbose: false
|
|
|
|
- task: Npm@1
|
|
displayName: "npm run build"
|
|
inputs:
|
|
command: custom
|
|
verbose: false
|
|
customCommand: run build
|
|
|
|
- task: Npm@1
|
|
displayName: "npm test"
|
|
inputs:
|
|
command: custom
|
|
verbose: false
|
|
customCommand: test
|
|
|
|
- task: PublishTestResults@2
|
|
inputs:
|
|
testResultsFiles: "**/test-results.xml"
|
|
testRunTitle: "Test results for JavaScript"
|
|
|
|
- task: PublishCodeCoverageResults@1
|
|
inputs:
|
|
codeCoverageTool: Cobertura
|
|
summaryFileLocation: "$(System.DefaultWorkingDirectory)/**/*coverage.xml"
|
|
reportDirectory: "$(System.DefaultWorkingDirectory)/**/coverage"
|
|
|
|
- task: Npm@1
|
|
displayName: "npm pack"
|
|
inputs:
|
|
command: custom
|
|
verbose: false
|
|
customCommand: pack
|
|
|
|
- task: CopyFiles@2
|
|
displayName: "Copy Files to: drop"
|
|
inputs:
|
|
Contents: "*.tgz"
|
|
TargetFolder: drop
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
inputs:
|
|
pathtoPublish: $(Build.SourcesDirectory)/drop
|