File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # .github/workflows/presubmits.yml
2+
3+ name : Presubmits
4+
5+ on : [pull_request]
6+
7+ jobs :
8+ prettier-check :
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - name : Checkout code
13+ uses : actions/checkout@v6
14+
15+ - name : Set up Node.js
16+ uses : actions/setup-node@v6
17+ with :
18+ node-version : " 24"
19+
20+ - name : Install pnpm
21+ run : |
22+ npm install -g pnpm
23+
24+ - name : Install dependencies
25+ run : pnpm install
26+
27+ - name : Run Prettier check
28+ run : pnpm run format-check
29+ builder :
30+ runs-on : ubuntu-latest
31+
32+ steps :
33+ - name : Checkout code
34+ uses : actions/checkout@v6
35+
36+ - name : Set up Node.js
37+ uses : actions/setup-node@v6
38+ with :
39+ node-version : " 24"
40+
41+ - name : Install pnpm
42+ run : |
43+ npm install -g pnpm
44+
45+ - name : Install dependencies
46+ run : pnpm install
47+
48+ - name : Run Builder
49+ run : pnpm run build
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { isProtectedRoute } from "@/lib/functions/auth";
66import type { RouterContext } from "@/lib/types" ;
77import { Providers } from "@/providers" ;
88import { Navbar } from "@/components/shared/Navbar/navbar" ;
9- import ErrorComponent from "@/components/shared/Error " ;
9+ import ErrorComponent from "@/components/shared/ErrorFallback " ;
1010
1111export const Route = createRootRouteWithContext < RouterContext > ( ) ( {
1212 beforeLoad : async ( { location } ) => {
You can’t perform that action at this time.
0 commit comments