image: node:7.6.0

stages:
  - build
  - test

cache:
  untracked: true
  paths:
    - node_modules/

build:
  stage: build
  script:
    - yarn config set cache-folder .yarn
    - yarn install
    - yarn build
  artifacts:
    paths:
      - node_modules/
      - dist/

test:
  stage: test
  script:
    - yarn test
