Skip to content

Commit

Permalink
fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Nov 9, 2023
1 parent f906368 commit 07b0fd3
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,37 +66,37 @@ jobs:
private_key=$(echo $out | sed -e 's/\(.*\)\([a-f0-9]\{64\}\)/0x\2/' | grep 0x | head -c66)
echo "PRIVATE_KEY=$private_key" >> "$GITHUB_OUTPUT"
cat $GITHUB_OUTPUT
# - name: 'Run tests: web3.js SimpleCoin'
# if: always()
# env:
# DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.PRIVATE_KEY }}
# USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.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.PRIVATE_KEY }}
# USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.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.PRIVATE_KEY }}
# USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.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.PRIVATE_KEY }}
# USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.PRIVATE_KEY }}
# run: |
# npx hardhat --network local test ./test/ethers.js/ERC20.js
- name: 'Run tests: web3.js SimpleCoin'
if: always()
env:
DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.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.PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.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.PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.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.PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.PRIVATE_KEY }}
run: |
npx hardhat --network local test ./test/ethers.js/ERC20.js
- name: 'Run tests: Uniswap'
if: always()
timeout-minutes: 30
Expand All @@ -105,13 +105,13 @@ jobs:
USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.PRIVATE_KEY }}
run: |
cd ./extern/fevm-uniswap-v3-core && yarn
cd ./extern/fevm-uniswap-v3-core && npx hardhat --network local test || true
npx hardhat --network local test || true
- name: 'Run tests: OpenZeppelin'
if: always()
timeout-minutes: 30
env:
DEPLOYER_PRIVATE_KEY: ${{ steps.testnode.outputs.PRIVATE_KEY }}
USER_1_PRIVATE_KEY: ${{ steps.testnode.outputs.PRIVATE_KEY }}
run: |
cd ./extern/openzeppelin-contracts/ && pwd && npm install && pwd
cd ./extern/openzeppelin-contracts/ && pwd && npx hardhat --network local test
cd ./extern/openzeppelin-contracts/ && npm install
npx hardhat --network local test

0 comments on commit 07b0fd3

Please sign in to comment.