diff --git a/.drone.yml b/.drone.yml index 5c91362..37c7159 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,17 +2,25 @@ kind: pipeline name: default steps: -- name: install +- name: Install image: node commands: - npm install -- name: build +- name: Build image: node commands: - npm run build -- name: test +- name: Test image: node commands: - - npm run test \ No newline at end of file + - npm run test + +- name: Discord Notification + image: appleboy/drone-discord + settings: + webhook_id: + from_secret: webhook_id + webhook_token: + from_secret: webhook_token \ No newline at end of file