MangoRecipe/.drone.yml

18 lines
210 B
YAML

kind: pipeline
name: default
steps:
- name: install
image: node
commands:
- npm install
- name: build
image: node
commands:
- npm run build
- name: test
image: node
commands:
- npm run test