-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
48 lines (41 loc) · 879 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
pipeline:
install:
image: node:8
commands:
- sleep 5
- yarn install --pure-lockfile
test:
image: node:8
commands:
- npm test
report:
image: joakimbeng/java-node
commands:
- npm run gen-report
when:
status: [ success, failure ]
slack:
image: plugins/slack
channel: cteam-drone-ci
webhook: https://hooks.slack.com/services/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
when:
status: [ success, failure ]
services:
hub:
image: selenium/hub:3.13.0-argon
ports:
- "4444:4444"
firefox:
image: selenium/node-firefox:3.13.0-argon
detach: true
volumes:
- /dev/shm:/dev/shm
environment:
HUB_HOST: hub
chrome:
image: selenium/node-chrome:3.13.0-argon
detach: true
volumes:
- /dev/shm:/dev/shm
environment:
HUB_HOST: hub