Make discord notifications possible
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
c8029f5588
commit
816a51cd22
16
.drone.yml
16
.drone.yml
|
@ -2,17 +2,25 @@ kind: pipeline
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: install
|
- name: Install
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
|
|
||||||
- name: build
|
- name: Build
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- npm run build
|
- npm run build
|
||||||
|
|
||||||
- name: test
|
- name: Test
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- npm run test
|
- npm run test
|
||||||
|
|
||||||
|
- name: Discord Notification
|
||||||
|
image: appleboy/drone-discord
|
||||||
|
settings:
|
||||||
|
webhook_id:
|
||||||
|
from_secret: webhook_id
|
||||||
|
webhook_token:
|
||||||
|
from_secret: webhook_token
|
Loading…
Reference in New Issue