12 lines
142 B
YAML
12 lines
142 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: ci
|
|
|
|
steps:
|
|
- name: test
|
|
image: node
|
|
commands:
|
|
- yarn
|
|
- yarn migrate
|
|
- yarn test
|