Skip to content

feat(grain): add official grain mcp #478

feat(grain): add official grain mcp

feat(grain): add official grain mcp #478

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Run format check
run: bun run fmt --check
- name: Run lint
run: bun run lint
- name: Run type check
run: bun run check