mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 23:57:49 +01:00
20 lines
219 B
YAML
20 lines
219 B
YAML
image: node:10
|
|
|
|
stages:
|
|
- testBackend
|
|
|
|
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
- client/node_modules
|
|
|
|
testBackend:
|
|
stage: test
|
|
services:
|
|
- mongo:4
|
|
script:
|
|
- npm i npm@latest -g
|
|
- npm i
|
|
- npm test
|