20 lines
191 B
YAML
20 lines
191 B
YAML
|
image: node:latest
|
||
|
|
||
|
stages:
|
||
|
- test
|
||
|
|
||
|
lint:
|
||
|
stage: test
|
||
|
script:
|
||
|
- npm run lint
|
||
|
|
||
|
compile:
|
||
|
stage: test
|
||
|
script:
|
||
|
- npm run build
|
||
|
|
||
|
#test:
|
||
|
# stage: test
|
||
|
# script:
|
||
|
# - npm test
|