From eb0ddbcfd5b8db95308fd702786d70eef62302e0 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Fri, 24 Sep 2021 18:57:54 +0000 Subject: Add drone configuration file --- .drone.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .drone.yml (limited to '.drone.yml') diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..f4953a2 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,18 @@ +kind: pipeline +type: kubernetes +name: default + +steps: +- name: AO Coverage Verify + image: node:lts + commands: + - yarn install --immutable --immutable-cache --check-cache + - yarn run test:coverage + - curl --proto '=https' --tlsv1.2 -sSf https://cov.submelon.dev/sh | sh + +trigger: + branch: + - trunk + event: + - pull_request + - push \ No newline at end of file -- cgit