19 lines
191 B
YAML
19 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
|