remove commitPendingChanges - scheduleUpdate handles everything #226
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: CI | |
| on: | |
| push: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| timeout-minutes: 20 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Install native build dependencies | |
| run: sudo apt-get update && sudo apt-get install -y build-essential python3 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Setup Zig | |
| uses: goto-bus-stop/setup-zig@v2 | |
| with: | |
| version: 0.15.2 | |
| - name: Install dependencies | |
| run: bun install --verbose || bun install --verbose | |
| # Build submodules | |
| - name: Build ghostty-opentui native binaries | |
| run: bun scripts/build.ts linux-x64 | |
| working-directory: ghostty-opentui | |
| - name: Build ghostty-opentui TypeScript | |
| run: bun run build | |
| working-directory: ghostty-opentui | |
| - name: Build tuistory | |
| run: bun run build | |
| working-directory: tuistory | |
| # scripts | |
| - run: bun run binary | |
| working-directory: termcast | |
| - run: bun run test || bun run test | |
| working-directory: termcast |