15 lines
163 B
YAML
15 lines
163 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: lint
|
|
image: node
|
|
commands:
|
|
- yarn
|
|
- yarn lint
|
|
|
|
- name: test
|
|
image: node
|
|
commands:
|
|
- yarn
|