Feat/support several chainweb #16
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: 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 |