feat: support project-local config and prompts #2156
Workflow file for this run
This file contains hidden or 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: sdk | |
on: | |
push: | |
branches: [main] | |
pull_request: {} | |
jobs: | |
sdks: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v5 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v5 | |
with: | |
node-version: 22 | |
cache: pnpm | |
- uses: dtolnay/[email protected] | |
- name: build codex | |
run: cargo build --bin codex | |
working-directory: codex-rs | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build SDK packages | |
run: pnpm -r --filter ./sdk/typescript run build | |
- name: Lint SDK packages | |
run: pnpm -r --filter ./sdk/typescript run lint | |
- name: Test SDK packages | |
run: pnpm -r --filter ./sdk/typescript run test |