Skip to content
This repository was archived by the owner on Dec 29, 2025. It is now read-only.

feat: add GITHUB_HOST to github-mcp-server for GitHub Enterprise Serv… #3

feat: add GITHUB_HOST to github-mcp-server for GitHub Enterprise Serv…

feat: add GITHUB_HOST to github-mcp-server for GitHub Enterprise Serv… #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.12
- name: Install dependencies
run: bun install
- name: Run tests
run: bun test
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run prettier check
run: bun run format:check
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.12
- name: Install dependencies
run: bun install
- name: Run TypeScript type check
run: bun run typecheck