14 lines
191 B
YAML
14 lines
191 B
YAML
|
pipeline:
|
||
|
install:
|
||
|
image: node
|
||
|
commands:
|
||
|
- npm install
|
||
|
build:
|
||
|
image: node
|
||
|
commands:
|
||
|
- npm run build
|
||
|
lint:
|
||
|
image: node
|
||
|
commands:
|
||
|
- npm run lint
|