9

Yarn doesn’t have docs on a 2.0 installation.
Request for docs

Kirk Strobeck
  • 17,984
  • 20
  • 75
  • 114

2 Answers2

0

While I haven't tried to get it working myself Yarn project uses CircleCI themselves. See their Circle configuration file from GitHub: https://github.com/yarnpkg/yarn/blob/master/.circleci/config.yml

Rob Fox
  • 5,355
  • 7
  • 37
  • 63
-4
version: 2
jobs:
  build:
    docker:
      - image: node:7.10.0
    working_directory: ~/app
    steps:
      - checkout
      - run: yarn
      - run: yarn test
Kirk Strobeck
  • 17,984
  • 20
  • 75
  • 114
  • 9
    Maybe a few words of explanation what you intend with your question; and how this is an answer would turn this into something that is helpful for other folks as well ... – GhostCat Apr 21 '17 at 19:16