Skip to content

Commit ecf3ded

Browse files
Copilotsonnyquinn24
andcommitted
Fix npm install dependency conflict in CI/CD pipeline
Co-authored-by: sonnyquinn24 <[email protected]>
1 parent ae2f3fb commit ecf3ded

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/auto-assign.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
node-version: 18
2525

2626
- name: Install dependencies
27-
run: npm install
27+
run: npm install --legacy-peer-deps
2828

2929
- name: Compile contracts
3030
run: npx hardhat compile
@@ -44,7 +44,7 @@ jobs:
4444
node-version: 18
4545

4646
- name: Install dependencies
47-
run: npm install
47+
run: npm install --legacy-peer-deps
4848

4949
- name: Run tests
5050
run: npx hardhat test
@@ -64,7 +64,7 @@ jobs:
6464
node-version: 18
6565

6666
- name: Install dependencies
67-
run: npm install
67+
run: npm install --legacy-peer-deps
6868

6969
- name: Deploy contracts
7070
run: npx hardhat run scripts/deploy.js --network mainnet

0 commit comments

Comments
 (0)