uhr/.drone.yml
Manuel Friedli 32a25e27b1
All checks were successful
continuous-integration/drone/push Build is passing
This seems to be the option I was looking for.
2019-05-10 15:10:05 +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
failure: ignore
commands:
- npm audit
- name: build
image: node:12
commands:
- npm run build:prod