From 17fd6f70b80d194c41da60c26c71210be33cf9d6 Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Fri, 3 May 2019 18:34:29 +0200 Subject: [PATCH] Add .drone.yml for continuous integration on Drone CI. --- .drone.yml | 14 ++++++++++++++ .editorconfig | 2 ++ 2 files changed, 16 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e3b8ad5 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +kind: pipeline +name: default + +steps: + - name: prepare + image: node:12 + commands: + - npm install + - name: build + image: node:12 + environment: + NPMPATH: "node_modules/.bin" + commands: + - $NPMPATH/grunt diff --git a/.editorconfig b/.editorconfig index c308ed0..87a3009 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,5 +9,7 @@ charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true +[*.yml] +indent_size = 2 [*.md] trim_trailing_whitespace = false