Skip to content

Commit

Permalink
fix: added circle ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ayonious committed Mar 6, 2021
1 parent d8f3a92 commit 79e72eb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,21 @@
version: 2.1
jobs:
build:
docker:
- image: circleci/node:12
steps:
- checkout
- restore_cache:
keys:
- deps-hash-{{ checksum "yarn.lock" }}
- deps-hash- # used if checksum fails

- run: yarn install
- run: yarn test

- save_cache:
paths:
- node_modules
key: deps-hash-{{ checksum "yarn.lock" }}

- run: yarn build
3 changes: 3 additions & 0 deletions README.md
@@ -1,6 +1,9 @@
<h1 align="center">console-table-printer</h1>
<h3 align="center">🖥️🍭Printing Pretty Tables on your console</h3>
<p align="center">
<a href="https://circleci.com/gh/ayonious/console-table-printer">
<img alt="CircleCI" src="https://circleci.com/gh/ayonious/console-table-printer.svg?style=svg">
</a>
<a href="https://codecov.io/gh/ayonious/console-table-printer">
<img alt="codecov" src="https://codecov.io/gh/ayonious/console-table-printer/branch/master/graph/badge.svg">
</a>
Expand Down

0 comments on commit 79e72eb

Please sign in to comment.