Skip to content

Feat/support several chainweb #16

Feat/support several chainweb

Feat/support several chainweb #16

Workflow file for this run

name: CI Checks
on:
pull_request:
branches:
- main
jobs:
checks:
name: Run Lint, Format Check, and Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Runner setup
uses: ./.github/actions/runner-setup
- name: Install dependencies
run: pnpm install
- name: Run lint check
run: pnpm lint:check
- name: Run format check
run: pnpm format:check
- name: Build the project
run: pnpm build