Skip to content

Instantly share code, notes, and snippets.

@zazk
Forked from kainiklas/bitbucket-pipelines.yml
Last active February 7, 2019 12:14
Show Gist options
  • Save zazk/39ddc2bc40cb4031e3548de57954eea1 to your computer and use it in GitHub Desktop.
Save zazk/39ddc2bc40cb4031e3548de57954eea1 to your computer and use it in GitHub Desktop.
Bitbucket Pipeline for Angular 6 + Firebase deployment
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