2018-11-08 22:32:17 +08:00
|
|
|
# Builds and publishes the Monaco Editor website
|
|
|
|
|
|
|
|
pool:
|
|
|
|
vmImage: 'Ubuntu-16.04'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
|
|
|
versionSpec: '8.x'
|
|
|
|
displayName: 'Install Node.js'
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
npm install
|
2018-11-09 20:01:07 +08:00
|
|
|
npm run build-website
|
2018-11-09 19:48:41 +08:00
|
|
|
displayName: 'Build website'
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
./build/publish-website.sh
|
|
|
|
displayName: 'Publish website'
|