From 285b6744a929b7020833c26c8850f25be1465a11 Mon Sep 17 00:00:00 2001 From: denislav-mladenov Date: Thu, 18 Jul 2024 12:47:02 +0300 Subject: [PATCH] test --- .github/workflows/3.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/3.yml b/.github/workflows/3.yml index f9cf0bbbee..6d3683ed2f 100644 --- a/.github/workflows/3.yml +++ b/.github/workflows/3.yml @@ -63,14 +63,14 @@ jobs: docker exec go-ethereum apk add --no-cache nodejs npm - name: Installation of hardhat - run: docker exec go-ethereum sh -c "cd /workspace/hardhat && npm install --save-dev hardhat && npm install ethers@5" + run: docker exec go-ethereum sh -c "cd /workspace/hardhat && ls -larth && npm install --save-dev hardhat && npm install ethers@5" - name: Checking the hardhat version to verify that its working properly run: docker exec go-ethereum npx hardhat --version - name: Deploy hardhat sample project run: | - docker exec go-ethereum sh -c "cd /workspace/hardhat/ignition/modules && yes | npx hardhat ignition deploy Token.js --network devnet" + docker exec go-ethereum sh -c "cd /workspace/hardhat && yes | npx hardhat ignition deploy ./ignition/modules/Token.js --network devnet" - name: Testing contracts run: |