Skip to content

Commit

Permalink
fix: ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
yknl committed Sep 18, 2020
1 parent 77758cd commit 9d5d3f1
Show file tree
Hide file tree
Showing 2 changed files with 348 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ jobs:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
# - restore_cache:
# keys:
# - v1-dependencies-{{ checksum "package.json" }}
# # fallback to using the latest cache if no exact match is found
# - v1-dependencies-

- run: npx lerna bootstrap --hoist

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

# run tests!
#- run: npm run lint:formatting
Expand Down
Loading

0 comments on commit 9d5d3f1

Please sign in to comment.