Files
ustk-todolist/.gitlab-ci.yml
2018-12-28 15:59:12 +03:00

20 lines
229 B
YAML

image: node:10
stages:
- test-backend
cache:
paths:
- node_modules/
- client/node_modules
test-backend:
stage: test-backend
services:
- mongo:4
script:
- npm i npm@latest -g
- npm i
- npm test