Skip to content

Commit a33cf06

Browse files
Set up CI with Azure Pipelines
[skip ci]
1 parent cd6ea1f commit a33cf06

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

azure-pipelines.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Node.js with Angular
2+
# Build a Node.js project that uses Angular.
3+
# Add steps that analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: 'ubuntu-latest'
11+
12+
steps:
13+
- task: NodeTool@0
14+
inputs:
15+
versionSpec: '10.x'
16+
displayName: 'Install Node.js'
17+
18+
- script: |
19+
npm install -g @angular/cli
20+
npm install
21+
ng build --prod
22+
displayName: 'npm install and build'

0 commit comments

Comments
 (0)