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

19 lines
224 B
YAML

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