* Fix CI configuration errors

* Remove downloading artifacts

* Add external NPM task
This commit is contained in:
Kamil Pajdzik 2019-06-03 15:23:47 -07:00 коммит произвёл GitHub
Родитель 2efcc751c6
Коммит 8b4fc438c1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 25 добавлений и 9 удалений

Просмотреть файл

@ -30,12 +30,12 @@ jobs:
inputs:
pathtoPublish: $(Build.SourcesDirectory)/dist
artifactName: dist
- template: azure-pipelines-job.yml
- template: azure-pipelines-test.yml
parameters:
nodeVersion: '8'
- template: azure-pipelines-job.yml
- template: azure-pipelines-test.yml
parameters:
nodeVersion: '10'
- template: azure-pipelines-job.yml
- template: azure-pipelines-test.yml
parameters:
nodeVersion: '12'

Просмотреть файл

@ -1,4 +1,20 @@
jobs:
- job: Build
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: Npm@1
displayName: 'npm install'
inputs:
command: custom
verbose: false
customCommand: install
- task: Npm@1
displayName: 'npm run build'
inputs:
command: custom
verbose: false
customCommand: run build
- job: Check_Everything
pool:
vmImage: 'Ubuntu 16.04'

Просмотреть файл

@ -5,7 +5,7 @@ jobs:
- job: 'testOn${{parameters.nodeVersion}}'
pool:
vmImage: 'Ubuntu 16.04'
dependsOn: Pack
dependsOn: Build
condition: succeeded()
steps:
- script: 'sudo apt-get update'
@ -20,12 +20,12 @@ jobs:
displayName: 'npm install'
inputs:
verbose: false
- task: DownloadBuildArtifacts@0
displayName: 'Download Build Artifacts'
- task: Npm@1
displayName: 'npm test'
inputs:
artifactName: dist
downloadPath: $(System.DefaultWorkingDirectory)
- script: 'npm test'
command: custom
verbose: false
customCommand: test
- task: PublishTestResults@2
inputs:
testResultsFiles: '$(System.DefaultWorkingDirectory)/test-results.xml'