Skip to content

Commit c39d5f5

Browse files
committed
Tweak workflows
1 parent 19fe4c5 commit c39d5f5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ runs:
1313
path: '**/node_modules'
1414
key: npm-v3-${{ hashFiles('**/package-lock.json') }}
1515
- name: Install dependencies
16-
run: npm ci
16+
## TODO: Remove when EIP-7702 authorizations are enabled in latest non-beta ethers version
17+
run: npm ci --legacy-peer-deps
1718
shell: bash
1819
if: steps.cache.outputs.cache-hit != 'true'
1920
- name: Install Foundry

.github/workflows/checks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ jobs:
118118
- uses: actions/checkout@v4
119119
- name: Set up environment
120120
uses: ./.github/actions/setup
121+
## TODO: Remove when EIP-7702 authorizations are enabled in latest non-beta ethers version
122+
- run: rm package-lock.json package.json # Dependencies already installed
121123
- uses: crytic/[email protected]
122124

123125
codespell:

0 commit comments

Comments
 (0)