cubbot/drone.yml

15 lines
192 B
YAML
Raw Normal View History

2020-04-16 20:22:57 +00:00
kind: pipeline
name: default
steps:
- name: test
image: node
commands:
- npm install
2020-04-17 08:14:49 +00:00
- npm run test:coverage
2020-04-16 20:22:57 +00:00
- name: build
image: node
commands:
- npm install
2020-04-17 08:14:49 +00:00
- npm run build