mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 15:47:48 +01:00
20 lines
229 B
YAML
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
|