我配置了审核工具,但看起来我做错了。 在配置系统(https://scrutinizer-ci.com/g/Rebolon/json-reviver/settings/build-config)中,我使用此设置:
build:
nodes:
analysis:
environment:
redis: false
postgresql: false
node:
version: '8.10.0'
tests: true
checks:
javascript: true
首先看来仍然安装了redis和postgresql。 然后在上一次构建的日志页面中,我可以看到它安装了节点6.11而不是8.10,并且在运行yanr任务时失败了。
我做错了什么?
答案 0 :(得分:0)
在您的scrutinizer.yml文件中添加:
build:
environment:
node: 10.15.3
如果您特别要求,Scrutinizer只会安装高于6的版本。