AMD64
Node.js: 6
Git
---
language: node_js
node_js:
  - "6"

sudo: false
dist: trusty

cache:
  yarn: true

before_install:
  - curl -o- -L https://yarnpkg.com/install.sh | bash
  - export PATH=$HOME/.yarn/bin:$PATH

install:
  - yarn install

script:
  - yarn test
Build Config
{
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "sudo": false,
  "cache": {
    "yarn": true
  },
  "script": [
    "yarn test"
  ],
  "install": [
    "yarn install"
  ],
  "node_js": [
    "6"
  ],
  "language": "node_js",
  "before_install": [
    "curl -o- -L https://yarnpkg.com/install.sh | bash",
    "export PATH=$HOME/.yarn/bin:$PATH"
  ]
}