Files
ISA-Frontend/bitbucket-pipelines.yml
2020-02-24 21:48:20 +01:00

33 lines
633 B
YAML

image: node:11.10.0
pipelines:
default:
- step:
script:
- echo "nothing to do"
branches:
master:
- step:
caches:
- node
script:
- umask 0022
- npm install
- npm run-script build-prod
integration:
- step:
caches:
- node
script:
- umask 0022
- npm install
- npm run-script build
develop:
- step:
caches:
- node
script:
- umask 0022
- npm install
- npm run-script build-prod