console-pretty-print
Version:
Adds pretty print to console.
20 lines (19 loc) • 397 B
YAML
version: 2
jobs:
build:
docker:
- image: "circleci/node:latest"
steps:
- checkout
- run:
name: install
command: npm install
- run:
name: test
command: npm test
- run:
name: coverage
command: npm run coverage
- run:
name: release
command: npm run semantic-release || true