Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4

steps:
- checkout

- run: yarn install


- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}


# run tests!
- run: yarn test

# upload coverage
- run: bash <(curl -s https://codecov.io/bash)
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# solidity-ci
[![CircleCI](https://circleci.com/gh/shahofblah/solidity-ci.svg?style=svg)](https://circleci.com/gh/shahofblah/solidity-ci)
[![codecov](https://codecov.io/gh/shahofblah/solidity-ci/branch/master/graph/badge.svg)](https://codecov.io/gh/shahofblah/solidity-ci)
# tes

t
2,970 changes: 2,970 additions & 0 deletions build/contracts/BurnableToken.json

Large diffs are not rendered by default.

Loading