Skip to content

Commit

Permalink
WIP: ci: disable zeth_contracts/node_modules cache
Browse files Browse the repository at this point in the history
  • Loading branch information
dtebbs committed Jan 4, 2021
1 parent 27f897a commit 792946f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/onpush-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.npm
key: check-contracts-npm-${{runner.os}}-${{hashFiles('**/package-lock.json')}}
- name: Cache zeth_contracts/node_modules
uses: actions/cache@v1
with:
path: zeth_contracts/node_modules
key: check-contracts-node-modules-${{ runner.os }}-${{ hashFiles('zeth_contracts/package-lock.json') }}
key: check-contracts-npm-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
# - name: Cache zeth_contracts/node_modules
# uses: actions/cache@v1
# with:
# path: zeth_contracts/node_modules
# key: check-contracts-node-modules-${{ runner.os }}-${{ hashFiles('zeth_contracts/package-lock.json') }}
- name: Cache depends/ganache-cli/node_modules
uses: actions/cache@v1
with:
path: depends/ganache-cli/node_modules
key: check-contracts-ganache-node-modules-${{runner.os}}-${{hashFiles('depends/ganache-cli/package-lock.json')}}
key: check-contracts-ganache-node-modules-${{ runner.os }}-${{ hashFiles('depends/ganache-cli/package-lock.json') }}
- name: Cache pip
uses: actions/cache@v2
with:
Expand Down

0 comments on commit 792946f

Please sign in to comment.