doipjs/.drone.yml

44 lines
555 B
YAML
Raw Permalink Normal View History

2022-02-25 13:09:48 -07:00
---
kind: pipeline
2022-02-25 14:10:11 -07:00
name: test
2022-02-25 13:09:48 -07:00
steps:
2022-02-25 14:10:11 -07: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 12:09:40 -06:00
- name: prepare
image: node
commands:
- yarn
- yarn run prepare
2022-02-25 14:10:11 -07:00
- name: publish on npm
image: plugins/npm
settings:
username: yarmo_eu
2023-03-08 06:40:08 -07:00
token:
2022-02-25 14:10:11 -07:00
from_secret: npm_token
email:
from_secret: npm_email
2022-09-20 14:07:46 -06:00
depends_on:
- test
2022-02-25 14:10:11 -07:00
trigger:
event:
- tag