feat(ci): Travis runs tests Circle builds
This commit is contained in:
@ -25,17 +25,17 @@ jobs:
|
|||||||
# Download and cache dependencies
|
# Download and cache dependencies
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
keys:
|
keys:
|
||||||
- v1-dependencies-{{ checksum "package.json" }}
|
- v1-dependencies-{{ checksum "client/package.json" }}
|
||||||
# fallback to using the latest cache if no exact match is found
|
# fallback to using the latest cache if no exact match is found
|
||||||
- v1-dependencies-
|
- v1-dependencies-
|
||||||
|
- run: cd ./client
|
||||||
- run: npm install
|
- run: npm install
|
||||||
|
|
||||||
- save_cache:
|
- save_cache:
|
||||||
paths:
|
paths:
|
||||||
- node_modules
|
- client/node_modules
|
||||||
key: v1-dependencies-{{ checksum "package.json" }}
|
key: v1-dependencies-{{ checksum "client/package.json" }}
|
||||||
|
|
||||||
# run tests!
|
# run tests!
|
||||||
- run: npm test
|
- run: npm test
|
||||||
- run: cd ./client && npm run build
|
- run: npm run build
|
Reference in New Issue
Block a user