config.yml 465 B

12345678910111213141516171819202122232425
  1. version: 2
  2. jobs:
  3. build:
  4. docker:
  5. - image: vuejs/ci
  6. working_directory: ~/repo
  7. steps:
  8. - checkout
  9. - restore_cache:
  10. keys:
  11. - v1-dependencies-{{ checksum "yarn.lock" }}
  12. - v1-dependencies-
  13. - run: yarn install
  14. - save_cache:
  15. paths:
  16. - node_modules
  17. - ~/.cache/yarn
  18. key: v1-dependencies-{{ checksum "yarn.lock" }}
  19. - run: yarn test --ci --runInBand