Add .drone.yml for continuous integration on Drone CI.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
d7581628af
commit
17fd6f70b8
2 changed files with 16 additions and 0 deletions
14
.drone.yml
Normal file
14
.drone.yml
Normal file
|
@ -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
|
|
@ -9,5 +9,7 @@ charset = utf-8
|
|||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.yml]
|
||||
indent_size = 2
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
|
Loading…
Reference in a new issue