19 lines
218 B
YAML
19 lines
218 B
YAML
image: node:6-slim
|
|
services:
|
|
- mongo
|
|
|
|
before_script:
|
|
- npm install
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- npm test
|
|
tags:
|
|
- docker
|
|
|
|
cache:
|
|
key: "$CI_BUILD_REF_NAME"
|
|
untracked: true
|
|
paths:
|
|
- node_modules
|