Я развертываю приложение angular ver.8 на хостинге Firebase с использованием конвейеров bitbucket, но получаю некоторые ошибки при работе конвейеров. Я внес некоторые изменения в какой-то файл, проверьте следующее: e2e: protractor.conf. js
exports.config = {
...,
capabilities: {
'browserName': 'chrome',
chromeOptions: {
args: ['--headless', '--no-sandbox']
}
}
...}
пакет. json
"scripts": {
...,
"build:prod": "ng build --prod",
"deploy": "firebase deploy --token $FIREBASE_TOKEN --non-interactive"
}
karma.conf. js
module.exports = function (config) {
config.set({
...,
customLaunchers: {
ChromeHeadlessCI: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
}
}
})
}
bibucket-pipelines.yml
image: node:10.16.3
pipelines:
branches:
master: #master branch
- step:
deployment: production
caches:
- node
script:
- npm install
- npm install -g @angular/cli
- npm install -g firebase-tools
- ng build --prod
- ls -laR ./dist #recursively list directories
- firebase deploy --token=$FIREBASE_TOKEN --project your-prod-firebase-projectname --non-interactive
develop: # develop branch
- step:
deployment: test
caches:
- node
script:
- npm install
- npm install -g @angular/cli
- npm install -g firebase-tools
- ng build
- ls -laR ./dist #recursively list directories
- firebase deploy --token=$FIREBASE_TOKEN --project your-test-firebase-projectname --non-interactive
И I добавили токен firebase в переменную bitbucket pipelines, но ошибка показывает:
1. If 'app-header' is an Angular component, then verify that it is part of this module.
2. If 'app-header' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("[ERROR ->]<app-header></app-header>
<div class="container-fluid">
<section>
...