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
17 changes: 13 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,20 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node.js
uses: actions/setup-node@v4
# Toolchains come from mise.toml, read here by mise-action so the runner
# and a developer's shell resolve identical versions.
- name: Setup toolchains (mise)
uses: jdx/mise-action@v4

- name: Locate pnpm store
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_ENV"

- name: Cache pnpm store
uses: actions/cache@v4
with:
node-version: 22
cache: 'pnpm'
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-

- name: Install dependencies
run: pnpm install
Expand Down
17 changes: 13 additions & 4 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,20 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node.js
uses: actions/setup-node@v4
# Toolchains come from mise.toml, read here by mise-action so the runner
# and a developer's shell resolve identical versions.
- name: Setup toolchains (mise)
uses: jdx/mise-action@v4

- name: Locate pnpm store
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_ENV"

- name: Cache pnpm store
uses: actions/cache@v4
with:
node-version: 22
cache: 'pnpm'
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-

- name: Install dependencies
run: pnpm install
Expand Down
17 changes: 13 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,20 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node.js
uses: actions/setup-node@v4
# Toolchains come from mise.toml, read here by mise-action so the runner
# and a developer's shell resolve identical versions.
- name: Setup toolchains (mise)
uses: jdx/mise-action@v4

- name: Locate pnpm store
run: echo "STORE_PATH=$(pnpm store path --silent)" >> "$GITHUB_ENV"

- name: Cache pnpm store
uses: actions/cache@v4
with:
node-version: 22
cache: 'pnpm'
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-

- name: Install dependencies
run: pnpm install
Expand Down
11 changes: 11 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Toolchain versions for this repo — read by mise locally and by
# jdx/mise-action in CI, so a developer's shell and the runner agree.
#
# Not listed here on purpose:
# pnpm -> package.json "packageManager". pnpm self-substitutes to that
# version regardless of which pnpm binary launches it, so a mise
# pin would be cosmetic and would drift.
# rust -> rust-toolchain.toml + dtolnay/rust-toolchain. rustup is canonical
# and mise defers to it anyway.
[tools]
node = "24.14.0" # ships npm 11.9.0 — required (>=11.5.1) for npm OIDC trusted publishing
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1"
},
"packageManager": "pnpm@10.6.1+sha512.40ee09af407fa9fbb5fbfb8e1cb40fbb74c0af0c3e10e9224d7b53c7658528615b2c92450e74cfad91e3a2dcafe3ce4050d80bda71d757756d2ce2b66213e9a3",
"packageManager": "pnpm@10.34.5",
"pnpm": {
"ignoredBuiltDependencies": [
"@smooai/config-typescript",
Expand Down
Loading