-
Notifications
You must be signed in to change notification settings - Fork 488
chore(dev/onboarding): set up mise-based workflow for initial codebase setup
#5761
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+127
−74
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
d1faf28
feat: set up `mise`-based workflow for initial codebase setup
kanadgupta 62244b3
cleanup
kanadgupta 9e86694
chore: simplify pnpm installation
kanadgupta c4965ae
docs: more cleanup
kanadgupta 3820f1b
Merge branch 'develop' into kanad-2026-07-01/add-mise-config
kanadgupta b5d90ec
docs: use consistent link URLs
kanadgupta 16598ea
chore: remove monorepo config, add min version
kanadgupta 68862e3
revert: install pnpm directly rather than relying on corepack
kanadgupta 47511ef
chore: point to go.mod file for golangci-lint
kanadgupta 4471f6b
chore: add `jq`, just in case
kanadgupta 2e90cf9
chore(dev): simplify mise tool version sources
jgoux 32bbad0
ci: use mise for shared tool setup
jgoux 4784613
ci: tighten mise cache key
jgoux 4e1c985
ci: fix mise setup path activation
jgoux a64f089
ci: address mise review followups
jgoux c972bd6
ci: build go linter with setup toolchain
jgoux 9e0d7be
ci: cache go linter binary
jgoux 5e00d1f
chore(dev): trust repo mise settings
jgoux 4244f04
ci: rely on mise shims path
jgoux 80eb9c9
chore(dev): keep go pin in mise config
jgoux 26d0c81
chore(dev): install go linter with mise
jgoux File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 1.3.13 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| module github.com/supabase/cli | ||
|
|
||
| go 1.25.5 | ||
| go 1.25.11 | ||
|
|
||
| require ( | ||
| github.com/BurntSushi/toml v1.6.0 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| [tools] | ||
| go = "1.25.11" | ||
| "go:github.com/golangci/golangci-lint/v2/cmd/golangci-lint" = "2.1.6" | ||
|
|
||
| [settings] | ||
| idiomatic_version_file_enable_tools = ["node", "bun", "pnpm"] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤦 did not realize that this option supported |
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have an idea for simplifying this so we don't need to manually grab all of the source files to construct the cache key — see #5778. Still needs testing!