Skip to content

feat: add AWS Bedrock provider support alongside Anthropic #1075

feat: add AWS Bedrock provider support alongside Anthropic

feat: add AWS Bedrock provider support alongside Anthropic #1075

Workflow file for this run

name: Type Check
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build shared package
run: bun run build:shared
- name: Run type checking
run: bun run typecheck:ci
- name: Comment on PR if type errors found
if: failure() && github.event_name == 'pull_request'
uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '❌ **Type checking failed!**\n\nPlease run `bun run typecheck` locally to see and fix type errors before merging.'
})