MangoRecipe/.drone.yml

18 lines
210 B
YAML
Raw Normal View History

2022-10-19 15:46:41 +02:00
kind: pipeline
name: default
steps:
2022-10-19 16:02:19 +02:00
- name: install
2022-10-19 15:46:41 +02:00
image: node
commands:
- npm install
2022-10-19 16:02:19 +02:00
- name: build
image: node
commands:
- npm run build
- name: test
image: node
commands:
2022-10-19 15:46:41 +02:00
- npm run test