Skip to content
Open
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 .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"MISE_DATA_DIR": "/mnt/mise-data"
},
"mounts": [{ "source": "tools-mise-data", "target": "/mnt/mise-data", "type": "volume" }],
"postCreateCommand": "sudo chown -R vscode:vscode /mnt/mise-data && mise trust --yes mise.toml && mise install --locked && mise run bootstrap"
"postCreateCommand": "sudo chown -R vscode:vscode /mnt/mise-data && mise trust --yes mise.toml && mise install && mise run bootstrap"
}
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Bootstrap workspace
run: |
mise trust --yes mise.toml
mise install --locked
mise install
mise run bootstrap-ci
- if: github.event_name == 'pull_request'
name: Check changeset
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Bootstrap workspace
run: |
mise trust --yes mise.toml
mise install --locked
mise install
mise run bootstrap-ci
- name: Verify generated CLI files are up to date
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Preview Release
on:
pull_request:
branches-ignore:
- 'renovate/*'
- "renovate/*"

concurrency:
group: preview-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Bootstrap workspace
run: |
mise trust --yes mise.toml
mise install --locked
mise install
mise run bootstrap-ci
- name: Build
run: mise exec -- pnpm build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Bootstrap workspace
run: |
mise trust --yes mise.toml
mise install --locked
mise install
mise exec -- npm install -g npm@^11.5.1
mise run bootstrap-ci
- name: Check package consistency
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Bootstrap workspace
run: |
mise trust --yes mise.toml
mise install --locked
mise install
mise run bootstrap-ci
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3
id: release_app
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
coverage
dist
mise.local.lock
mise.lock
mise.local.toml
node_modules
*.tsbuildinfo
.worktrees
secret.env
secret.env
65 changes: 0 additions & 65 deletions mise.lock

This file was deleted.

3 changes: 1 addition & 2 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ min_version = "2026.3.17"

[settings]
experimental = true
lockfile = true

[hooks]
postinstall = "npx corepack enable"
Expand All @@ -11,7 +10,7 @@ postinstall = "npx corepack enable"
_.path = ["{{config_root}}/node_modules/.bin"]

[tools]
node = "22.22.0"
node = "24.15.0"
shellcheck = "0.11.0"

[tasks.bootstrap-ci]
Expand Down
Loading
Loading