image: node

before_script:
  - npm install

stages:
  - build

build:
  stage: build
  script:
    - npm test
  only:
    - master
  artifacts:
    paths:
      - kram/
