Skip to content

Commit

Permalink
fix: change the CircleCI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorainville committed Feb 22, 2018
1 parent 452b180 commit fd0f90e
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,15 @@ jobs:
- run: npm run test
- run: npm run build

- run: cd ./demo/
- run: npm install
- run: cd ./demo/ && npm install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- demo/node_modules
key: v1-dependencies-{{ checksum "demo/package.json" }}

# run tests!
- run: npm run e2e
- run: npm run build
- run: cd ./demo/ && npm run e2e
- run: cd ./demo/ && npm run build

- run: cd ../
- run: git status

0 comments on commit fd0f90e

Please sign in to comment.