mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
17 lines
400 B
YAML
17 lines
400 B
YAML
steps:
|
|
# Install Node.js
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: "12.0.0"
|
|
displayName: "Install a fixed version of Node"
|
|
# Install Go
|
|
- task: GoTool@0
|
|
inputs:
|
|
versionSpec: "1.10"
|
|
displayName: "Install a fixed version of Go"
|
|
# Install Python
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: "3.6.8"
|
|
displayName: "Install a fixed version of Python"
|