-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.drone.yml
More file actions
61 lines (53 loc) · 962 Bytes
/
.drone.yml
File metadata and controls
61 lines (53 loc) · 962 Bytes
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
kind: pipeline
name: default
steps:
- name: install
image: node:alpine
commands:
- yarn install
- name: build
image: node:alpine
commands:
- yarn build
depends_on:
- install
- name: node-10
image: node:10-alpine
commands:
- yarn test
depends_on:
- build
- name: node-11
image: node:11-alpine
commands:
- yarn test
depends_on:
- build
- name: node-12
image: node:12-alpine
commands:
- yarn test
depends_on:
- build
- name: node-13
image: node:13-alpine
commands:
- yarn test
depends_on:
- build
- name: coverage-build
image: node:alpine
commands:
- yarn test
depends_on:
- node-10
- node-11
- node-12
- node-13
- name: coverage-report
image: plugins/codecov
settings:
token:
from_secret: CODECOV_TOKEN
depends_on:
- coverage-build