environment:
  nodejs_version: "7"

install:
  - ps: Install-Product node $env:nodejs_version
  - npm install -g yarn
  - yarn install
  - yarn install --dev

test_script:
  - yarn test

build: off