Skip to content

Commit 32130e7

Browse files
committed
update azure settings
1 parent 7d7d41a commit 32130e7

File tree

1 file changed

+94
-0
lines changed

1 file changed

+94
-0
lines changed

azure-pipelines.yml

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ steps:
1515
versionSpec: '10.x'
1616
displayName: 'Install Node.js'
1717

18+
# angular/app-i18n
19+
1820
- task: Npm@1
1921
displayName: 'angular/app-i18n: install dependencies'
2022
inputs:
@@ -28,6 +30,8 @@ steps:
2830
customCommand: 'run test:ci'
2931
workingDir: './angular/app-i18n'
3032

33+
# angular/app-settings
34+
3135
- task: Npm@1
3236
displayName: 'angular/app-settings: install dependencies'
3337
inputs:
@@ -40,3 +44,93 @@ steps:
4044
command: 'custom'
4145
customCommand: 'run test:ci'
4246
workingDir: './angular/app-settings'
47+
48+
# angular/components/basic-components
49+
50+
- task: Npm@1
51+
displayName: 'angular/components/basic-components: install dependencies'
52+
inputs:
53+
command: 'install'
54+
workingDir: './angular/components/basic-components'
55+
56+
- task: Npm@1
57+
displayName: 'angular/components/basic-components: run unit tests'
58+
inputs:
59+
command: 'custom'
60+
customCommand: 'run test:ci'
61+
workingDir: './angular/components/basic-components'
62+
63+
# angular/components/component-host
64+
65+
- task: Npm@1
66+
displayName: 'angular/components/component-host: install dependencies'
67+
inputs:
68+
command: 'install'
69+
workingDir: './angular/components/component-host'
70+
71+
- task: Npm@1
72+
displayName: 'angular/components/component-host: run unit tests'
73+
inputs:
74+
command: 'custom'
75+
customCommand: 'run test:ci'
76+
workingDir: './angular/components/component-host'
77+
78+
# angular/components/component-providers
79+
80+
- task: Npm@1
81+
displayName: 'angular/components/component-providers: install dependencies'
82+
inputs:
83+
command: 'install'
84+
workingDir: './angular/components/component-providers'
85+
86+
- task: Npm@1
87+
displayName: 'angular/components/component-providers: run unit tests'
88+
inputs:
89+
command: 'custom'
90+
customCommand: 'run test:ci'
91+
workingDir: './angular/components/component-providers'
92+
93+
# angular/components/component-queries
94+
95+
- task: Npm@1
96+
displayName: 'angular/components/component-queries: install dependencies'
97+
inputs:
98+
command: 'install'
99+
workingDir: './angular/components/component-queries'
100+
101+
- task: Npm@1
102+
displayName: 'angular/components/component-queries: run unit tests'
103+
inputs:
104+
command: 'custom'
105+
customCommand: 'run test:ci'
106+
workingDir: './angular/components/component-queries'
107+
108+
# angular/components/dynamic-content
109+
110+
- task: Npm@1
111+
displayName: 'angular/components/dynamic-content: install dependencies'
112+
inputs:
113+
command: 'install'
114+
workingDir: './angular/components/dynamic-content'
115+
116+
- task: Npm@1
117+
displayName: 'angular/components/dynamic-content: run unit tests'
118+
inputs:
119+
command: 'custom'
120+
customCommand: 'run test:ci'
121+
workingDir: './angular/components/dynamic-content'
122+
123+
# angular/components/lifecycle
124+
125+
- task: Npm@1
126+
displayName: 'angular/components/lifecycle: install dependencies'
127+
inputs:
128+
command: 'install'
129+
workingDir: './angular/components/lifecycle'
130+
131+
- task: Npm@1
132+
displayName: 'angular/components/lifecycle: run unit tests'
133+
inputs:
134+
command: 'custom'
135+
customCommand: 'run test:ci'
136+
workingDir: './angular/components/lifecycle'

0 commit comments

Comments
 (0)