Skip to content

Commit

Permalink
[Easy] move to yarn (#20)
Browse files Browse the repository at this point in the history
We are using yarn everywhere else and have deemed it superior over npm (faster, more intuitive CLI). Also, the failed dependabot update is not causing an error under yarn.

### Test Plan

CI
  • Loading branch information
fleupold committed Apr 8, 2020
1 parent 7480ad5 commit 065b0f8
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 065b0f8

Please sign in to comment.