monaco-editor/azure-pipelines.yml

22 lines
381 B
YAML
Raw Normal View History

# Builds and publishes the Monaco Editor website
pool:
2020-09-18 02:55:37 +08:00
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
2020-09-18 02:55:37 +08:00
versionSpec: '12.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
2018-11-10 00:43:21 +08:00
env:
GITHUB_TOKEN: $(GITHUB_TOKEN)
2020-09-18 02:55:37 +08:00
displayName: 'Publish website'