Bitbucket 管道最新的 Node js(至少 7.4.0)
Bitbucket pipelines lastest Node js (at least 7.4.0)
我有一个在 Bitbucket 上进行测试的应用程序,每次 sombebody 向 git 推送内容时,我都想 运行 进行测试。我发现新功能 Bitbucket Pipelines 是最好的。
我需要什么?
我无法在任何地方找到我可以使用的最新版本的 Node js。
我正在使用 ES6 (ES2015) 语法,但它失败了,因为它不知道 let, const, class, ...
关键字。
我有 bitbucket-pipelines.yml
看起来像这样:
图片:node:5.11.0
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- npm install
- npm test
但是失败了。我可以使用的最新版本的 node js 是什么?
您需要添加有效的 nodejs 图像。
要使用 7.4.0 版,请添加
image: node:7.4.0
在您的 bitbucket-pipelines.yml
文件中
我有一个在 Bitbucket 上进行测试的应用程序,每次 sombebody 向 git 推送内容时,我都想 运行 进行测试。我发现新功能 Bitbucket Pipelines 是最好的。
我需要什么?
我无法在任何地方找到我可以使用的最新版本的 Node js。
我正在使用 ES6 (ES2015) 语法,但它失败了,因为它不知道 let, const, class, ...
关键字。
我有 bitbucket-pipelines.yml
看起来像这样:
图片:node:5.11.0
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- npm install
- npm test
但是失败了。我可以使用的最新版本的 node js 是什么?
您需要添加有效的 nodejs 图像。
要使用 7.4.0 版,请添加
image: node:7.4.0
在您的 bitbucket-pipelines.yml
文件中