We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9664c1b commit e4930ebCopy full SHA for e4930eb
.azure-pipelines/pipeline.yml
@@ -191,6 +191,6 @@ stages:
191
- task: NodeTool@0
192
displayName: "Installing NodeJS"
193
inputs:
194
- versionSpec: '6.x'
+ versionSpec: '>=8.6'
195
- script: scripts/build-docs.sh
196
displayName: "Building documentation"
scripts/build-docs.sh
@@ -1,9 +1,9 @@
1
#!/bin/bash
2
3
build_docs() {
4
- cd docs; yarn install
5
- cd docs; npm install -D vuepress
6
- cd docs; yarn build
+ cd docs; yarn install && \
+ yarn add -D vuepress && \
+ yarn build
7
}
8
9
build_docs
0 commit comments