Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,28 @@ jobs:
- name: Check generated Agent Server contract
run: npm run check:agent-server-api

public-type-budget:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js 22.12
uses: actions/setup-node@v6
with:
node-version: 22.12
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Test weak-type ratchet behavior
run: npm run test:public-type-budget

- name: Check public weak-type budget
run: npm run check:public-type-budget

test:
runs-on: ubuntu-latest

Expand Down
1 change: 1 addition & 0 deletions .openhands/pre-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ cd "$SCRIPT_DIR/.." || exit $?

npm run lint || exit $?
npm run build || exit $?
node scripts/check-public-type-budget.mjs || exit $?
npm run test:coverage || exit $?
npm run format:check || exit $?
Loading
Loading