Merge pull request '[feat] add ci config' (#1) from feature/add-ci-config into develop
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jay 2020-06-03 15:54:12 +00:00
commit 4ac86ffae0
1 changed files with 19 additions and 0 deletions

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/**