15 lines
192 B
YAML
15 lines
192 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: compliance
|
|
|
|
steps:
|
|
- name: lint
|
|
image: node
|
|
commands:
|
|
- yarn install
|
|
- yarn lint
|
|
- name: test
|
|
image: node
|
|
commands:
|
|
- yarn install
|
|
- yarn test |