Skip to content

Commit

Permalink
fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Nov 14, 2023
1 parent dfa9aac commit a20eb2c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,39 +76,39 @@ jobs:
- name: 'Run tests: web3.js SimpleCoin'
if: always()
env:
DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
ROOT_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT1_PRIVATE_KEY }}
run: |
npx hardhat --network local test ./test/web3.js/SimpleCoin.js
- name: 'Run tests: web3.js ERC20'
if: always()
timeout-minutes: 2
env:
DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
ROOT_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT1_PRIVATE_KEY }}
run: |
npx hardhat --network local test ./test/web3.js/ERC20.js
- name: 'Run tests: ethers.js SimpleCoin'
if: always()
timeout-minutes: 2
env:
DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
ROOT_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT1_PRIVATE_KEY }}
run: |
npx hardhat --network local test ./test/ethers.js/SimpleCoin.js
- name: 'Run tests: ethers.js ERC20'
if: always()
timeout-minutes: 2
env:
DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
ROOT_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT1_PRIVATE_KEY }}
run: |
npx hardhat --network local test ./test/ethers.js/ERC20.js
- name: 'Run tests: Uniswap'
if: always()
timeout-minutes: 30
env:
DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
ROOT_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT2_PRIVATE_KEY }}
run: |
cd ./extern/fevm-uniswap-v3-core && yarn
Expand All @@ -117,7 +117,7 @@ jobs:
if: always()
timeout-minutes: 30
env:
DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
ROOT_PRIVATE_KEY: ${{ steps.testnode.outputs.ROOT_PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.accounts.outputs.ACCOUNT3_PRIVATE_KEY }}
run: |
cd ./extern/openzeppelin-contracts/ && npm install
Expand Down

0 comments on commit a20eb2c

Please sign in to comment.