image: node:6

# Set up MySQL test-database
services:
  - mysql:latest

# Configure test-database
variables:
  MYSQL_DATABASE: db
  MYSQL_ROOT_PASSWORD: secret
  
# Install node libraries
before_script:
  - npm install
  
# Run JEST tests
run_tests:
  stage: test
  script:
    - npm test
  artifacts:
    paths:
      - coverage/
    
# Publish coverage report on gitlab-pages
pages:
  stage: deploy
  dependencies: 
    - run_tests
  script:
    - mv coverage/ public/
  artifacts:
    paths:
      - public
  only:
    - master