Document that build must run before check

The web-ui package uses tsc which requires compiled .d.ts files from
dependencies to exist.

closes #167
This commit is contained in:
Mario Zechner 2025-12-10 22:50:34 +01:00
parent 3d35e7c469
commit 1fe87bc50d

View file

@ -25,6 +25,8 @@ npm run build # Build all packages
npm run check # Lint, format, and type check
```
> **Note:** `npm run check` requires `npm run build` to be run first. The web-ui package uses `tsc` which needs compiled `.d.ts` files from dependencies.
### CI
GitHub Actions runs on push to `main` and on pull requests. The workflow runs `npm run check` and `npm run test` for each package in parallel.