我尝试使用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
一切正常,直到出现此错误为止,直到上一个命令为止
但是如果我从终端运行
firebase部署--project test-1c121
一切正常
答案 0 :(得分:1)
在package.json
部分中检查您的scripts
文件。您可能在deploy
中有一个错字,因为npm在运行 firebse 命令时遇到问题,并且您想运行 firebase 。