Network.ts - script hangs when reassigning w/ ContractFactory::deploy #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests for EVM | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ["18.x", "20.x"] | |
steps: | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache node_modules | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Build | |
run: npm run build:core | |
- name: Test | |
timeout-minutes: 15 | |
run: | | |
nohup sh -c "anvil -p 8545 > /dev/null 2>&1" < /dev/null & | |
nohup sh -c "anvil -p 8546 > /dev/null 2>&1" < /dev/null & | |
sleep 5 | |
npm run test:core |