Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alanorth/hugo-theme-bootstrap4-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Orth <alan.orth@gmail.com>2020-12-10 13:48:12 +0300
committerAlan Orth <alan.orth@gmail.com>2020-12-10 13:48:12 +0300
commitbfac136c3e5e5e0b1802098c3942760b59051cd4 (patch)
tree6a61734fe403adedd19993caa920b45fbad26d66
parent4a922d865720f1291951f6a397f08824af573683 (diff)
Add .drone.yml for ci.mjanja.ch
-rw-r--r--.drone.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..0605df7
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,34 @@
+kind: pipeline
+type: docker
+name: node10
+
+steps:
+- name: build
+ image: node:10-alpine
+ commands:
+ - npm install
+ - npm run dist
+
+---
+kind: pipeline
+type: docker
+name: node12
+
+steps:
+- name: build
+ image: node:12-alpine
+ commands:
+ - npm install
+ - npm run dist
+
+---
+kind: pipeline
+type: docker
+name: node14
+
+steps:
+- name: build
+ image: node:14-alpine
+ commands:
+ - npm install
+ - npm run dist