From d543dfb2010f186f242407284016ffe34669f78c Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Fri, 11 Dec 2020 19:45:56 +0100 Subject: [PATCH] Added drone pipeline that automaticly runs on prs (or at least it should) ref #23 --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..238cce8 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +--- +kind: pipeline +name: tests:latest + +steps: +- name: run tests + image: node:alpine + commands: + - npm install + - npm test +trigger: + event: + - pull_request \ No newline at end of file