Skip to content

Instantly share code, notes, and snippets.

@Qarun-Qadir-Bissoondial
Created March 20, 2020 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Qarun-Qadir-Bissoondial/1b9c3e6b7136398cdba8fd290395b5fe to your computer and use it in GitHub Desktop.
Save Qarun-Qadir-Bissoondial/1b9c3e6b7136398cdba8fd290395b5fe to your computer and use it in GitHub Desktop.
Setting up Bitbucket Pipelines for an Angular 9 project
pipelines:
branches:
'{master}':
- step:
name: Build and test
image: rastasheep/alpine-node-chromium:12-alpine
caches:
- node
script:
- npm install
- npm run test:prod
- npm run build
artifacts:
- dist/**
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment