16 lines
207 B
YAML
16 lines
207 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 build
|
||
|
- yarn test
|