This commit is contained in:
denislav-mladenov 2024-07-17 22:13:20 +03:00
parent 372dcb3c1c
commit 6462d7afd7

View file

@ -64,8 +64,11 @@ jobs:
run: | run: |
docker exec go-ethereum apk add --no-cache nodejs npm docker exec go-ethereum apk add --no-cache nodejs npm
- name: Installation of hardhat - name: Installing hardhat dependencies
run: docker exec go-ethereum sh -c "cd /workspace/hardhat && npm install --save-dev hardhat" run: docker exec go-ethereum sh -c "cd /workspace/hardhat && npm install"
- name: Installation of hardhat plugins
run: docker exec go-ethereum sh -c "cd /workspace/hardhat && npm install --save-dev @nomiclabs/hardhat-waffle ethereum-waffle chai"
- name: Checking the hardhat version to verify that it's working properly - name: Checking the hardhat version to verify that it's working properly
run: docker exec go-ethereum npx hardhat --version run: docker exec go-ethereum npx hardhat --version
@ -86,4 +89,3 @@ jobs:
- name: Push new image to ghcr.io - name: Push new image to ghcr.io
run: docker push ${{ env.REGISTRY }}/${{ github.repository_owner }}/go-eth-hardhat:latest run: docker push ${{ env.REGISTRY }}/${{ github.repository_owner }}/go-eth-hardhat:latest