Skip to content

Commit

Permalink
🏠 Setup circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Feb 25, 2020
1 parent 8712a8b commit 4cb99db
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
orbs:
react: "thefrontside/react@0.2.0"
codecov: codecov/codecov@1.0.5
version: 2.1
workflows:
push:
jobs:
- react/install
- react/eslint:
requires:
- react/install
- react/test:
requires:
- react/install
- coverage:
requires:
- react/install
jobs:
coverage:
executor: react/default
steps:
- attach_workspace:
at: ~/
- react/coverage
- store_artifacts:
path: ./artifacts
- codecov/upload:
file: artifacts/coverage/coverage-final.json

0 comments on commit 4cb99db

Please sign in to comment.