fix(tui): preserve dashboard layout during command prompts #57
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: Capability Contract | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| parity: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout xint | |
| uses: actions/checkout@v4 | |
| - name: Checkout xint-rs | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: 0xNyk/xint-rs | |
| path: xint-rs | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install xint deps | |
| run: bun install --frozen-lockfile | |
| - name: Generate manifests | |
| run: | | |
| bun run xint.ts capabilities --compact > /tmp/xint-ts-capabilities.json | |
| cargo run --manifest-path xint-rs/Cargo.toml -- capabilities --compact > /tmp/xint-rs-capabilities.json | |
| - name: Check contract parity | |
| run: bun scripts/check-capability-contract.mjs /tmp/xint-ts-capabilities.json /tmp/xint-rs-capabilities.json |