Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
pcw109550 committed Apr 1, 2024
1 parent 8e18bb2 commit bbf60a4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
working_directory: rvsol/lib/optimism
- restore_cache:
name: Restore Go modules cache
key: gomod-{{ checksum "go.sum" }}
working_directory: rvsol/lib/optimism
# TODO(pcw109550) fix hardcoded path
key: gomod-{{ checksum "rvsol/lib/optimism/go.sum" }}
# Fetch node_modules into the pnpm store
# This will cache node_modules based on pnpm-lock so other steps can instantly install them with `pnpm install --prefer-offline`
# --prefer-offline installs node_modules instantly by just reading from cache if it exists rather than fetching from network
Expand All @@ -48,10 +48,10 @@ jobs:
working_directory: rvsol/lib/optimism
- save_cache:
name: Save PNPM Package Cache
key: pnpm-packages-v2-{{ checksum "pnpm-lock.yaml" }}
working_directory: rvsol/lib/optimism
# TODO(pcw109550) fix hardcoded path
key: pnpm-packages-v2-{{ checksum "rvsol/lib/optimism/pnpm-lock.yaml" }}
paths:
- "node_modules"
- "rvsol/lib/optimism/node_modules"
- run:
name: Install dependencies
command: pnpm install:ci:offline
Expand Down

0 comments on commit bbf60a4

Please sign in to comment.