-
Notifications
You must be signed in to change notification settings - Fork 3
/
.drone.yml
66 lines (61 loc) · 820 Bytes
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
kind: pipeline
name: Install Test & Build
when:
event:
- push
steps:
- name: install
image: node
volumes:
- name: node
path: /tmp/node
commands:
- npm ci
when:
event:
- push
- name: lint
image: node
volumes:
- name: node
path: /tmp/node
commands:
- npm run lint
when:
event:
- push
- name: lint:commit
image: node
volumes:
- name: node
path: /tmp/node
commands:
- npm run lint:commit
when:
branch:
- master
- develop
event:
- push
- name: build
image: node
volumes:
- name: node
path: /tmp/node
commands:
- npm run build
when:
event:
- push
- name: release
image: node
volumes:
- name: node
path: /tmp/node
commands:
- npm run release
when:
branch:
- master
event:
- push