24 lines
347 B
YAML
24 lines
347 B
YAML
image: node:latest
|
|
|
|
stages:
|
|
- test
|
|
|
|
lint:
|
|
stage: test
|
|
before_script:
|
|
- npm install
|
|
script:
|
|
- npm run lint
|
|
|
|
compile:
|
|
stage: test
|
|
before_script:
|
|
- npm install
|
|
script:
|
|
- npm run build
|
|
# test:
|
|
# stage: test
|
|
# before_script:
|
|
# - npm install
|
|
# script:
|
|
# - npm test
|