You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
340 B
19 lines
340 B
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: test_node123
|
|
image: node
|
|
commands:
|
|
- npm install
|
|
- npm run build
|
|
steps:
|
|
- name: send telegram notification
|
|
image: appleboy/drone-telegram
|
|
settings:
|
|
token: telegram_token
|
|
to: telegram_to
|
|
message_file: message_file.tpl
|
|
template_vars:
|
|
env: testing
|
|
app: MyApp |