Add .drone.yml for ci.mjanja.ch

This commit is contained in:
Alan Orth 2020-12-10 12:48:12 +02:00
parent 4a922d8657
commit bfac136c3e
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 34 additions and 0 deletions

34
.drone.yml Normal file
View File

@ -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