doipjs/.drone.yml

44 lines
555 B
YAML
Raw Permalink Normal View History

2022-02-25 21:09:48 +01:00
---
kind: pipeline
2022-02-25 22:10:11 +01:00
name: test
2022-02-25 21:09:48 +01:00
steps:
2022-02-25 22:10:11 +01:00
- name: run tests
image: node
commands:
- yarn
- yarn run prepare
- yarn run test
trigger:
event:
- push
- pull_request
- tag
---
kind: pipeline
name: publish-npm
steps:
2022-09-21 20:09:40 +02:00
- name: prepare
image: node
commands:
- yarn
- yarn run prepare
2022-02-25 22:10:11 +01:00
- name: publish on npm
image: plugins/npm
settings:
username: yarmo_eu
2023-03-08 14:40:08 +01:00
token:
2022-02-25 22:10:11 +01:00
from_secret: npm_token
email:
from_secret: npm_email
2022-09-20 22:07:46 +02:00
depends_on:
- test
2022-02-25 22:10:11 +01:00
trigger:
event:
- tag