Skip to content

Commit 8ec1e1c

Browse files
authored
Add drone config (#183)
1 parent c993005 commit 8ec1e1c

File tree

2 files changed

+61
-6
lines changed

2 files changed

+61
-6
lines changed

.drone.yml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
kind: pipeline
2+
type: docker
3+
name: build node 14
4+
5+
steps:
6+
- name: install
7+
pull: if-not-exists
8+
image: node:14
9+
commands:
10+
- npm ci
11+
12+
- name: prepare
13+
image: node:14
14+
commands:
15+
- npm run prepare
16+
17+
trigger:
18+
event:
19+
- push
20+
21+
---
22+
kind: pipeline
23+
type: docker
24+
name: build node 12
25+
26+
steps:
27+
- name: install
28+
pull: if-not-exists
29+
image: node:12
30+
commands:
31+
- npm ci
32+
33+
- name: prepare
34+
image: node:12
35+
commands:
36+
- npm run prepare
37+
38+
trigger:
39+
event:
40+
- push
41+
42+
---
43+
kind: pipeline
44+
type: docker
45+
name: build node 10
46+
47+
steps:
48+
- name: install
49+
pull: if-not-exists
50+
image: node:10
51+
commands:
52+
- npm ci
53+
54+
- name: prepare
55+
image: node:10
56+
commands:
57+
- npm run prepare
58+
59+
trigger:
60+
event:
61+
- push

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)