-
Notifications
You must be signed in to change notification settings - Fork 11
/
azure-pipelines.yml
64 lines (58 loc) · 1.8 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
# 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
trigger:
- master
stages:
- stage: Test
jobs:
- job: Test
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- task: YarnInstaller@3
inputs:
versionSpec: '1.x'
checkLatest: true
- script: |
yarn
yarn lint
yarn test
displayName: 'yarn install and test'
- stage: Deploy
dependsOn:
- Test
condition: and(succeeded('Test'), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
jobs:
- job: Deploy
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- task: YarnInstaller@3
inputs:
versionSpec: '1.x'
checkLatest: true
- task: InstallSSHKey@0
inputs:
knownHostsEntry: $(githubKnownHosts)
sshPublicKey: $(macroDecoratorsDeployPublic)
sshKeySecureFile: 'macro-decorators-deploy'
- script: |
git config --global user.email "[email protected]";
git config --global user.name "Chris Garrett";
git config remote.origin.url "[email protected]:pzuraq/macro-decorators.git"
displayName: 'Configure Git'
- script: |
yarn
yarn build:docs
yarn deploy
displayName: 'Deploy Docs'