backend/.drone.yml
Nicolai Ort 553a35bb8e
Some checks failed
continuous-integration/drone/pr Build is failing
switched to custom clone logic
ref #23
2020-12-11 20:23:12 +01:00

19 lines
298 B
YAML

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