17 lines
314 B
YAML
17 lines
314 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: clone
|
|
image: alpine/git
|
|
commands:
|
|
- git clone http://gitea.watsonlabs.net/watsonb8/homebridge-harmony-control.git .
|
|
- git checkout $DRONE_COMMIT
|
|
|
|
- name: build
|
|
image: node
|
|
commands:
|
|
- npm install
|
|
- npm run build
|