Compare commits

..

2 Commits

Author SHA1 Message Date
Jay
4ac86ffae0 Merge pull request '[feat] add ci config' (#1) from feature/add-ci-config into develop
All checks were successful
continuous-integration/drone/push Build is passing
2020-06-03 15:54:12 +00:00
Jay
4e11976667 [feat] add ci config 2020-06-03 15:52:22 +00:00

19
.drone.yml Normal file
View File

@ -0,0 +1,19 @@
---
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/**