mediv0/vue-input-validator

View on GitHub
.circleci/config.yml

Summary

Maintainability
Test Coverage
version: 2.1

orbs:
  codecov: codecov/codecov@1.0.2

# Define the jobs we want to run for this project
jobs:
  test:
    docker:
      - image: circleci/node:14.15.4  
    steps:
      - checkout
      - restore_cache:
          keys:
          - v1-deps-{{ checksum "package-lock.json" }}
          - v1-deps-
      - run: npm install
      - save_cache:
          key: v1-deps-{{ checksum "package-lock.json" }}
          paths:
            - node_modules
      - run: npm run test

workflows:
  version: 2
  testing packages:
    jobs:
      - test