cubbot/drone.yml

15 lines
194 B
YAML

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