validator/.drone.yml

20 lines
251 B
YAML
Raw Normal View History

2020-06-03 15:52:22 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: node:lts
commands:
- npm i
- npm test
when:
ref:
- refs/heads/**
trigger:
ref:
include:
- refs/heads/**
- refs/tags/**