Skip to content

Commit

Permalink
Go back to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
Flightan committed Jul 17, 2017
1 parent 17c4e21 commit a211290
Show file tree
Hide file tree
Showing 3 changed files with 492 additions and 472 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ jobs:
steps:
- checkout
- run:
name: update-npm
command: 'sudo npm install -g npm@latest'
name: update-yarn
command: 'sudo npm install -g yarn@latest'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-npm
command: npm install
name: install-yarn
command: yarn install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: npm test
command: yarn test
Loading

0 comments on commit a211290

Please sign in to comment.