-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathazure-pipelines.yml
63 lines (61 loc) · 1.56 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
strategy:
matrix:
node_8_linux:
node_version: 8.x
imageName: 'ubuntu-latest'
node_8_mac:
node_version: 8.x
imageName: 'macos-latest'
node_8_win:
node_version: 8.x
imageName: 'windows-latest'
node_10_linux:
node_version: 10.x
imageName: 'ubuntu-latest'
node_10_mac:
node_version: 10.x
imageName: 'macos-latest'
node_10_win:
node_version: 10.x
imageName: 'windows-latest'
node_12_linux:
node_version: 12.x
imageName: 'ubuntu-latest'
node_12_mac:
node_version: 12.x
imageName: 'macos-latest'
node_12_win:
node_version: 12.x
imageName: 'windows-latest'
node_14_linux:
node_version: 14.x
imageName: 'ubuntu-latest'
node_14_mac:
node_version: 14.x
imageName: 'macos-latest'
node_14_win:
node_version: 14.x
imageName: 'windows-latest'
pool:
vmImage: $(imageName)
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
displayName: 'Install Node.js'
- script: |
node --version
npm --version
displayName: 'version check'
- script: |
npm install
npm run coverage
displayName: 'npm install and build'
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage/cobertura-coverage.xml'