Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,12 @@ jobs:
nvm use default
set -x && node -v && npm -v && google-chrome --version && docker version && python --version
# - restore_dependency_cache
- run: | # TODO figure out how to make this only run on a cache miss in restore_dependency_cache
nvm use default
npm ci
# TODO: Restore the dependency cache and run setup only on a cache miss.
- run:
name: Set up monorepo
command: |
nvm use default
npm run setup
- save_cache:
key: node_modules-{{ checksum "package-lock.json" }}-{{ checksum "combined-package-lock.txt" }}
paths:
Expand Down Expand Up @@ -139,7 +142,7 @@ jobs:
# - restore_dependency_cache
- run: | # TODO figure out how to make this only run on a cache miss in restore_dependency_cache
nvm use default
npm ci
npm ci --ignore-scripts
- persist_to_workspace:
root: ~/bitcore/packages/crypto-rpc # only persist crypto-rpc package
paths:
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ignore-scripts=true
Loading