uhr/.drone.yml
Manuel Friedli 214ff6227d
Some checks failed
continuous-integration/drone/push Build is failing
Try and allow auditing to fail. Will this be visible on the build
server?
2019-05-10 14:43:38 +02:00

17 lines
271 B
YAML

kind: pipeline
name: default
steps:
- name: prepare
image: node:12
commands:
- npm install
- name: audit
image: node:12
errignore: true
commands:
- npm audit
- name: build
image: node:12
commands:
- npm run build:prod