cubbot/drone.yml

15 lines
194 B
YAML
Raw Normal View History

2020-04-16 20:22:57 +00:00
kind: pipeline
name: default
steps:
- name: test
image: node
commands:
2020-04-19 17:10:16 +00:00
- yarn 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:
2020-04-19 17:10:16 +00:00
- yarn install
2020-04-17 08:14:49 +00:00
- npm run build