Skip to content

Merge pull request #311 from ShipSecAI/codex/mcp-workflow-tools #901

Merge pull request #311 from ShipSecAI/codex/mcp-workflow-tools

Merge pull request #311 from ShipSecAI/codex/mcp-workflow-tools #901

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run linter
run: bun run lint
- name: Run typecheck
run: bun run typecheck
- name: Run tests
run: bun run test