Skip to content

[codex] add setApiUrl builder support #9

[codex] add setApiUrl builder support

[codex] add setApiUrl builder support #9

Workflow file for this run

name: PR checks
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./sdk
steps:
- name: Checkout commit
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '22.x'
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install Dependencies
run: yarn
- name: Run linter
run: yarn lint
typecheck:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./sdk
steps:
- name: Checkout commit
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '22.x'
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install Dependencies
run: yarn
- name: Run tsc
run: yarn build
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./sdk
steps:
- name: Checkout commit
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '22.x'
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install Dependencies
run: yarn
- name: Run tests
run: yarn test