Skip to content

Commit

Permalink
Merge 04c1cb9 into 7480ad5
Browse files Browse the repository at this point in the history
  • Loading branch information
fleupold committed Apr 7, 2020
2 parents 7480ad5 + 04c1cb9 commit e374334
Show file tree
Hide file tree
Showing 5 changed files with 8,120 additions and 11,702 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ build/*
coverage/*
coverage.json
node_modules/*
package-lock.json

.idea/
.vscode/
Expand Down
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
language: node_js
node_js:
- '10'
cache: npm
- "10"
cache: yarn
install:
- npm install -g ganache-cli
- npm install
- yarn global add ganache-cli
- yarn --frozen-lockfile
before_script:
- ganache-cli > /dev/null &
script:
- npm run lint
- npm run solhint
- npm test
- yarn lint
- yarn solhint
- yarn test
- npx solium -d contracts/
- npm run coverage && cat ./coverage/lcov.info | coveralls
- yarn coverage && cat ./coverage/lcov.info | coveralls

0 comments on commit e374334

Please sign in to comment.