Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jaderiverstokes committed Oct 21, 2024
1 parent 8052784 commit 70bede9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
npm install
id: install-dependencies

- name: Run Local Chain with Anvil
run: |
anvil &
id: local-chain

- name: Run Hardhat Deployment Script
run: |
cd evm-tableland
Expand All @@ -51,10 +56,10 @@ jobs:
- name: Run Forge build
run: |
forge --version
forge build --sizes --via-ir
forge build --sizes --via-ir --fork-url http://localhost:8545
id: build

- name: Run Forge tests
run: |
forge test --via-ir -vvv
forge test --via-ir -vvv --fork-url http://localhost:8545
id: test

0 comments on commit 70bede9

Please sign in to comment.