[READ-ONLY] Mirror of https://github.com/bombshell-dev/tty. Platform independent 2D layout engine for terminal applications based on Clay
5

Configure Feed

Select the types of activity you want to include in your feed.

fix(ci): rebuild from clean in size-report so build-config changes are measured

The size report builds head then base without cleaning between them. For PRs that change only build config (Makefile, patches/, flags) and not src/*.c, make sees clayterm.wasm as newer than the unchanged sources and skips the base rebuild, so base re-measures head's artifact, delta is 0, and no size comment is posted. Run make clean && make for both builds so each is from scratch.

Nate Moore (Jun 6, 2026, 12:13 PM -0500) 96efff65 48ff4bbc

+2 -2
+2 -2
.github/workflows/size-report.yml
··· 35 35 node-version: 24 36 36 37 37 - name: build (head) 38 - run: make && deno task build:npm 0.0.0 38 + run: make clean && make && deno task build:npm 0.0.0 39 39 40 40 - name: measure sizes (head) 41 41 run: | ··· 54 54 git submodule update --init --recursive 55 55 56 56 - name: build (base) 57 - run: make && deno task build:npm 0.0.0 57 + run: make clean && make && deno task build:npm 0.0.0 58 58 59 59 - name: measure sizes (base) 60 60 run: deno run --allow-read /tmp/measure-size.ts > /tmp/base-sizes.json