Takumon/mean-blog

View on GitHub
.circleci/config.yml

Summary

Maintainability
Test Coverage
version: 2
jobs:
  build:
    docker:
      - image: circleci/node:8.9.0-browsers
    working_directory: ~/repo

    steps:
      - checkout
      - restore_cache:
          key: v1-dependencies-{{ checksum "package.json" }}
      - run: npm install

      - save_cache:
          paths:
            - node_modules
          key: v1-dependencies-{{ checksum "package.json" }}

      - run: npm run test:client
      - store_test_results:
          path: ./dist/tests/xml
      - store_artifacts:
          path: ./dist/tests/html/test-results
          destination: test-result
      - store_artifacts:
          path: ./coverage
          destination: test-coverage