leandreAlly/error-ease

View on GitHub
.circleci/config.yml

Summary

Maintainability
Test Coverage
version: 2.4
orbs:
  node: circleci/node@5.1.0
  coveralls: coveralls/coveralls@1.0.6

jobs:
  build:
    docker:
      - image: node:18.13.0
    steps:
      - checkout:
      - run:
          name: Install dependencies
          command: npm install
      - run:
          name: Run tests
          command: npm run test:coverage
      - run:
          name: Upload coverage to Coveralls
          command: npx coveralls < coverage/lcov.info