-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
88 lines (74 loc) · 2.76 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- main
pool:
vmImage: ubuntu-latest
stages:
- stage: PRTest
displayName: PR Test Stage
jobs:
- job: PR_Test
condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.16.x'
displayName: 'Install Node.js'
- script: npm install -g @angular/cli
displayName: 'Install Angular CLI'
- task: Npm@1
inputs:
workingDir: $(System.DefaultWorkingDirectory)/projects/rh-rsa-form-validators
command: 'install'
displayName: 'Install package dependencies'
- task: Npm@1
inputs:
workingDir: $(System.DefaultWorkingDirectory)/projects/rh-rsa-form-validators
command: 'custom'
customCommand: 'run lint'
displayName: 'Run eslint checks'
- task: Npm@1
inputs:
workingDir: $(System.DefaultWorkingDirectory)/projects/rh-rsa-form-validators
command: 'custom'
customCommand: 'run test'
displayName: 'Run unit tests'
- stage: Publish
displayName: Publish to NPM
dependsOn: PRTest
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
jobs:
- job: Publish_to_npm
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.16.x'
displayName: 'Install Node.js'
- script: npm install -g @angular/cli
displayName: 'Install Angular CLI'
- task: Npm@1
inputs:
workingDir: $(System.DefaultWorkingDirectory)
command: 'install'
displayName: 'Install workspace dependencies'
- task: Npm@1
inputs:
workingDir: $(System.DefaultWorkingDirectory)/projects/rh-rsa-form-validators
command: 'install'
displayName: 'Install package dependencies'
- task: Npm@1
inputs:
workingDir: $(System.DefaultWorkingDirectory)/projects/rh-rsa-form-validators
command: 'custom'
customCommand: 'run build'
displayName: 'Build package'
- task: Npm@1
inputs:
workingDir: $(System.DefaultWorkingDirectory)/dist/rh-rsa-form-validators
command: 'custom'
customCommand: 'publish --access public'
customEndpoint: 'npm_runninghill'
displayName: 'Publish to npmjs.org'