backend/.drone.yml
Nicolai Ort 0f419625d2
Some checks reported errors
continuous-integration/drone/pr Build was killed
switched to using the ci testing script
ref #23
2020-12-11 20:25:26 +01:00

19 lines
303 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:ci
trigger:
event:
- pull_request