mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 15:47:48 +01:00
14 lines
165 B
YAML
14 lines
165 B
YAML
image: node:10
|
|
|
|
stages:
|
|
- test
|
|
|
|
test:
|
|
stage: test
|
|
services:
|
|
- mongo:4
|
|
script:
|
|
- npm i npm@latest -g
|
|
- npm i && cd client && npm i
|
|
- npm test
|