23 lines
244 B
YAML
23 lines
244 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
|
|
- name: lint
|
|
image: node
|
|
commands:
|
|
- yarn
|
|
- yarn lint
|
|
|
|
- name: build
|
|
image: node
|
|
commands:
|
|
- yarn
|
|
- yarn build
|
|
|
|
- name: test
|
|
image: node
|
|
commands:
|
|
- yarn
|
|
- yarn test
|