Skip to content

Commit 9597a25

Browse files
committed
Use yarn instead of npm on circleci
1 parent 83aaf4f commit 9597a25

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

circle.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
machine:
22
node:
33
version: 6.2.1
4+
environment:
5+
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
6+
7+
dependencies:
8+
override:
9+
- yarn
10+
cache_directories:
11+
- ~/.cache/yarn
12+
413
test:
14+
override:
15+
- yarn test
516
post:
6-
- npm run coverage
17+
- npm run coverage

0 commit comments

Comments
 (0)