Skip to content

chore: update interface and remove ignition module for custom deploy task #46

chore: update interface and remove ignition module for custom deploy task

chore: update interface and remove ignition module for custom deploy task #46

Workflow file for this run

name: "Hardhat CI 🚀"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
ci:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo 📥"
uses: "actions/checkout@v4"
- name: "Install Bun 🥟"
uses: "oven-sh/setup-bun@v1"
- name: "Install the dependencies 📦"
run: "bun install"
- name: "Lint TypeScript 🧹"
run: "bun run lint:ts"
- name: "Lint Solidity 🧹"
run: "bun run lint:sol"
- name: "Compile the contracts 🛠️"
run: "bun run compile"
- name: "Test the contracts 🧪"
run: "bun run test"