从Firebase上的管道部署期间发生错误

时间:2018-12-09 02:23:53

标签: firebase gitlab gitlab-ci continuous-deployment

我尝试使用gitlab管道在firebase上部署我的angular应用程序。

我遵循了guide,并编写了一个gitlab-ci文件,简化了启动过程。

image: node:latest

cache:
  paths:
    - node-modules/

stages:
  - deploy

deploy:
  stage: deploy
  environment:
    name: development
  script:
    - npm install -g firebase-tools
    - npm install
    - npm run builddev
    - npm run deploy
  only:
    - master

一切正常,直到出现此错误为止,直到上一个命令为止

enter image description here

但是如果我从终端运行

  

firebase部署--project test-1c121

一切正常

1 个答案:

答案 0 :(得分:1)

package.json部分中检查您的scripts文件。您可能在deploy中有一个错字,因为npm在运行 firebse 命令时遇到问题,并且您想运行 firebase