backend/.drone.yml
Nicolai Ort 31e7d074dc
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
Added dedicated clone step
ref #23
2020-12-11 20:18:03 +01:00

17 lines
238 B
YAML

---
kind: pipeline
name: tests:latest
steps:
- name: clone
image: alpine/git
commands:
- git checkout $DRONE_SOURCE_BRANCH
- name: run tests
image: node:alpine
commands:
- yarn
- yarn test
trigger:
event:
- pull_request