Skip to content
Snippets Groups Projects
.gitlab-ci.yml 543 B
Newer Older
image: node:12.16.3
Falk's avatar
Falk committed

# Info: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
services:
Falk's avatar
Falk committed
  - name: mongo:$MONGODB_VERSION
Falk's avatar
Falk committed
    alias: mongodb
Falk's avatar
Falk committed

variables:
  MONGODB_VERSION: '4.2.6'
Falk's avatar
Falk committed
  MONGODB_URL: 'mongodb://localhost:27017/test'
  JWT_SECRET: 'test'

# http://docs.gitlab.com/ee/ci/yaml/README.html#cache
cache:
  paths:
    - node_modules/

test_client:
  script:
    - cd app/client
    - npm install
Falk's avatar
Falk committed
    - npm run test
Falk's avatar
Falk committed

test_server:
  script:
    - cd app/server
    - node ./scripts/build.js
    - npm run test