-
Notifications
You must be signed in to change notification settings - Fork 0
Adds builder presubmit #43
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
Merged
Changes from all commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
c9f5e39
commits
christianhelp 712a37b
updates db and adds email + password sign up
christianhelp 4d1c40f
Adds bugs to todos
christianhelp 7c585f5
ensures protection of sign in and sign up routes
christianhelp 717a3f9
fix providers setup
christianhelp 5969492
fixes up stuff
christianhelp b68a3a6
Adds sidebar
christianhelp 1f5fe76
whole bunch of other commits
christianhelp dae49d6
formatter
christianhelp e8ace99
changes idk
christianhelp 7a038f5
Merge remote-tracking branch 'origin/main' into other-fixes-n-stuff
christianhelp 0a7ec04
whole lotta stuff
christianhelp 05dd665
formatter
christianhelp 0b79b23
modifies user button
christianhelp 41a5921
adds a bunch of other stuff like theme switcher I think
christianhelp ee5abcf
I suck at commit messages
christianhelp 23aca39
More commits and stuff
christianhelp c3ab36d
formatter + stuff
christianhelp e70e7bb
More commits for formatter and fixes mutations
christianhelp 3c7bc60
updates and fixes imports
christianhelp a0ee072
formatter
christianhelp b1998f0
Fixes based on Code Rabbit suggestions (I should pay more attention)
christianhelp 0c2c18c
formatter
christianhelp 0c1aa2f
Updates for more feedback. The bot is cooking ngl.
christianhelp 3bf9077
More feedback
christianhelp b40414d
fixes
christianhelp 47befbd
more fixes
christianhelp a849513
Updates to ignore Shad cn components and route tree
christianhelp f1eaf42
Quick update of feedback for join
christianhelp 25c5458
add todo for extra variables logged that can be nulled
christianhelp 4c5ad4d
Removes undeeded TODOs and adds bugs to a few
christianhelp d39f303
Renames constants to be screaming snake case
christianhelp 4beff4f
Renames all of the errors
christianhelp 9f47800
Updates all of the routes to have the correct response format
christianhelp bb02ad9
Quick updates
christianhelp 961a24e
Merge commit '48ca5a82cf10a9393219cdfdd12668dadf95377d' into rework-a…
christianhelp 388c1f6
formatter
christianhelp e8a7fb8
Small updates
christianhelp fa08521
more updates or things I missed
christianhelp a8fcb0c
More updates
christianhelp 051bdef
More fixes
christianhelp af0fd28
Fixes return for user on admin
christianhelp 2d96af2
whoops
christianhelp ee9df94
fix type thing
christianhelp eadef63
Removes old comment
christianhelp fb34f1a
Adds builder and bumps node versions to LTS
christianhelp c83955e
Merge remote-tracking branch 'origin/main' into adds-builder-presubmit
christianhelp e38a67c
test this out
christianhelp 0c6a3e6
Test
christianhelp 11c2340
Renames due to weird case sensitive issue
christianhelp 58aa240
Bumps versions
christianhelp 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,49 @@ | ||
| # .github/workflows/presubmits.yml | ||
|
|
||
| name: Presubmits | ||
|
|
||
| on: [pull_request] | ||
|
|
||
| jobs: | ||
| prettier-check: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: "24" | ||
|
|
||
| - name: Install pnpm | ||
| run: | | ||
| npm install -g pnpm | ||
|
|
||
| - name: Install dependencies | ||
| run: pnpm install | ||
|
|
||
| - name: Run Prettier check | ||
| run: pnpm run format-check | ||
| builder: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: "24" | ||
|
|
||
| - name: Install pnpm | ||
| run: | | ||
| npm install -g pnpm | ||
|
|
||
| - name: Install dependencies | ||
| run: pnpm install | ||
|
|
||
| - name: Run Builder | ||
| run: pnpm run build | ||
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
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.
Uh oh!
There was an error while loading. Please reload this page.