var index = 0;
while (true) {
console.log(`Current index is`, index);
if (index == 5) {
break;
}
index++;
}
console.log(`The final index is`, index);
for (i = 0; i < 5; i++) {
console.log(`Current i is`, i);
}
YAML管道:azure-pipelines.yml
. . .
stages:
- stage: A
displayName: 'Stage A'
jobs:
- job: A1
displayName: 'Job A1'
steps:
- task: NodeTool@0
displayName: 'Use the latest Node.js'
inputs:
versionSpec: '>=6.x'
checkLatest: true
- task: Bash@3
displayName: 'Run a single JavaScript file'
inputs:
targetType: inline
script: |
echo "Run the JavaScript file: JavaScriptDemo/test-loop.js"
node JavaScriptDemo/test-loop.js
1条答案
按热度按时间rhfm7lfc1#
按照以下步骤设置YAML管道以运行单个JavaScript文件:
1.首先,请确保代理计算机上已安装**
Node.js
工具。通常,MS托管代理预装了最新版本的Node.js工具。在管道作业中,您还可以使用Node.js tool installer task(NodeTool@0
)将最新或指定版本的Node.js工具安装到代理机器上。1.然后,您可以使用命令任务(如Bash task)调用以下
node
**命令来运行单个JavaScript文件。下面是一个示例作为参考。
JavaScriptDemo/test-loop.js
azure-pipelines.yml