27 lines
422 B
YAML
27 lines
422 B
YAML
kind: pipeline
|
|
name: AMD64
|
|
|
|
steps:
|
|
- name: Install
|
|
image: node
|
|
commands:
|
|
- npm install
|
|
|
|
- name: Build
|
|
image: node
|
|
commands:
|
|
- cp -n config.example.json config.json
|
|
- npm run build
|
|
|
|
- name: Test
|
|
image: node
|
|
commands:
|
|
- npm run test
|
|
|
|
- name: Discord Notification
|
|
image: appleboy/drone-discord
|
|
settings:
|
|
webhook_id:
|
|
from_secret: webhook_id
|
|
webhook_token:
|
|
from_secret: webhook_token |