Skip to content

Commit

Permalink
Also cache eth-transfer-proxy/node_modules in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanberckmans committed Jun 16, 2024
1 parent e071e8f commit cee4386
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ runs:
- uses: 3cities/cache@04f198bf0b2a39f7230a4304bf07747a0bddf146
id: install-cache
with:
path: node_modules/
# in addition to caching the standard node_modules, we also cache packages/eth-transfer-proxy/node_modules because some of its dependencies use nohoist that causes the dependency artifacts to be placed directly into this subpackage node_modules
path: |
node_modules/
packages/eth-transfer-proxy/node_modules/
key: ${{ runner.os }}-install-${{ hashFiles('**/yarn.lock') }}
- if: steps.install-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --ignore-scripts
Expand Down

0 comments on commit cee4386

Please sign in to comment.