Skip to content

Commit

Permalink
Adding arch info to fix caching issue on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
charliesantos committed Aug 1, 2023
1 parent f514222 commit e595aa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ commands:
steps:
- get-code
- restore_cache:
key: v1-deps-{{ checksum "package.json" }}
key: dependency-cache-{{ arch }}-{{ checksum "package.json" }}
- run:
name: Installing dependencies
command: node -v && npm install
- save_cache:
key: v1-deps-{{ checksum "package.json" }}
key: dependency-cache-{{ arch }}-{{ checksum "package.json" }}
paths:
- ./node_modules
build:
Expand Down

0 comments on commit e595aa4

Please sign in to comment.