Skip to content

Commit

Permalink
Use yarn with circle
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Mar 12, 2017
1 parent 9299509 commit 809ec7f
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6.1
version: 6.1

dependencies:
override:
- yarn
cache_directories:
- ~/.cache/yarn

test:
override:
- npm run build
- npm run link
- yarn build
- npm link
- danger

post:
- npm run lint
- npm test
- yarn lint
- yarn test

0 comments on commit 809ec7f

Please sign in to comment.