-
-
Save zazk/39ddc2bc40cb4031e3548de57954eea1 to your computer and use it in GitHub Desktop.
Bitbucket Pipeline for Angular 6 + Firebase deployment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: node:10 | |
pipelines: | |
branches: | |
master: | |
- step: | |
name: "Build, test and deploy to firebase production" | |
deployment: production | |
caches: | |
- node | |
script: | |
- npm install --quiet | |
- npm run test | |
- npm run build-prod | |
- npm run deploy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment