chore: update interface and remove ignition module for custom deploy task #46
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: "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" |