18 lines
261 B
YAML
18 lines
261 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: haiti-framework
|
|
|
|
steps:
|
|
- name: build
|
|
image: node
|
|
volumes:
|
|
- name: cache
|
|
path: /tmp/cache
|
|
commands:
|
|
- npm install
|
|
- npm test
|
|
|
|
volumes:
|
|
- name: cache
|
|
host:
|
|
path: /var/lib/cache |