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