Add code coverage command #8
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: "⚡ Push" | |
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 & Solidity 🧹" | |
run: "bun run check" | |
- name: "Compile the contracts 🛠️" | |
run: "bun run compile" | |
- name: "Test the contracts 🧪" | |
run: "bun run test" |