我正在尝试按照本教程使用travis CI从github部署到firebase。 https://medium.com/@cpavnn/deploy-to-firebase-hosting-from-github-3772fed05e72
对于我使用的const input = [[0, 1], [2, 3], [4, 5]]
let flattened=[];
for (let i=0; i<input.length; ++i) {
let current = input[i];
for (let j=0; j<current.length; ++j)
flattened.push(current[j]);
}
文件,
.travis.yml
但是每次我部署时都会出现此错误:
我该怎么办?
答案 0 :(得分:1)
尝试将node_js: 7
放在没有引号的一行上。
我还没有测试过,但这是我通常使用的格式。
language: node_js
node_js: 7
before_script:
- npm install -g firebase-tools
script:
- firebase deploy --project projectId --token $FIREBASE_TOKEN
别忘了将您的秘密FIREBASE_TOKEN
添加到Travis CI中,并将projectId
替换为Firebase项目ID。
您概述的中型文章在YAML中看起来包含无效字符。尝试输入而不是复制粘贴。