Skip to content

Commit 515b80e

Browse files
authored
Merge pull request #355 from typed-ember/azure-ci
chore(ci): azure pipelines config
2 parents c6261f6 + 66595e3 commit 515b80e

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

azure-pipelines.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Node.js
2+
# Build a general Node.js project with npm.
3+
# Add steps that analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
5+
6+
pool:
7+
vmImage: 'vs2017-win2016'
8+
9+
trigger:
10+
paths:
11+
exclude:
12+
- README.md
13+
- CHANGELOG.md
14+
- CODE_OF_CONDUCT.md
15+
steps:
16+
- task: NodeTool@0
17+
inputs:
18+
versionSpec: '8.x'
19+
displayName: 'Install Node.js'
20+
21+
- script: |
22+
npm install -g yarn ember-cli ts-node
23+
displayName: 'Setup global tools'
24+
25+
- script: |
26+
yarn install
27+
displayName: 'Build'
28+
29+
- script: |
30+
yarn ci:prepare
31+
yarn ci:test
32+
displayName: 'Test'

0 commit comments

Comments
 (0)