diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e7208f1..6f24f7a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,6 +30,24 @@ jobs: with: version: nightly + - name: Clone EVM Tableland Repository + run: | + git clone https://github.com/tablelandnetwork/evm-tableland.git + cd evm-tableland + id: clone + + - name: Install dependencies + run: | + cd evm-tableland + npm install + id: install-dependencies + + - name: Run Hardhat Deployment Script + run: | + cd evm-tableland + npx hardhat run scripts/deploy.ts --network localhost + id: deploy + - name: Run Forge build run: | forge --version