Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
ci:
uses: btravstack/config/.github/workflows/ci-reusable.yml@workflows-v1
uses: btravstack/tools/.github/workflows/ci-reusable.yml@workflows-v1
with:
# "" uses .node-version (the dev version). 22.19 is the ROOT package's
# engines floor. 24 and 26 cover the current LTS and the live release
Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ the code.
cold** (download included), **3.8–3.9 s warm** — the slowest package in the
repo and still under four seconds. **CI does not yet cache that directory**:
`.github/workflows/ci.yml` delegates wholly to
`btravstack/config`'s `ci-reusable.yml@workflows-v1`, and a caller cannot
`btravstack/tools`'s `ci-reusable.yml@workflows-v1`, and a caller cannot
inject an `actions/cache` step into a reusable workflow's jobs. Closing it
means adding a cache-path input there, not here; until then every test job
pays the ~3.5 s download.
Expand Down Expand Up @@ -658,7 +658,7 @@ A sixth rule is about production code that tests keep honest:
- **Caching the Temporal test-server binary in CI.** The path is stable and
gitignored; what is missing is the `actions/cache` step, which cannot be
written from `start`'s `ci.yml` while it delegates to
`btravstack/config`'s reusable workflow (see Toolchain & conventions). It
`btravstack/tools`'s reusable workflow (see Toolchain & conventions). It
costs ~3.5 s per test job, not correctness.
- The `@btravstack/oxlint` rule banning `currentUnit()` outside infrastructure
adapters (Thesis #2) — it needs a way to identify an adapter.
Expand Down
Loading