Yarn doesn’t have docs on a 2.0 installation.
Request for docs
- Here is 1.0 docs https://circleci.com/docs/1.0/yarn/
- Where is 2.0? https://circleci.com/docs/2.0/yarn/
Yarn doesn’t have docs on a 2.0 installation.
Request for docs
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
version: 2
jobs:
build:
docker:
- image: node:7.10.0
working_directory: ~/app
steps:
- checkout
- run: yarn
- run: yarn test