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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 20
node-version: "22"
cache: "pnpm"

- name: Install Dependencies
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 20
node-version: "22"
cache: "pnpm"

- name: Install Dependencies
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 20
node-version: "22"
cache: "pnpm"

- name: Install Dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/database-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ jobs:
SUPABASE_SECRET_KEY: ${{ secrets.SUPABASE_SECRET_KEY }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
mdroidian marked this conversation as resolved.

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: 10.15.1
run_install: false

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: "20"
node-version: "22"
cache: "pnpm"

- name: Install Dependencies
run: pnpm install --frozen-lockfile

- uses: supabase/setup-cli@v1
- uses: supabase/setup-cli@v2
Comment thread
mdroidian marked this conversation as resolved.
with:
version: latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/roam-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 20
node-version: "22"
cache: "pnpm"

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/roam-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 20
node-version: "22"
cache: "pnpm"

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/roam-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 20
node-version: "22"
cache: "pnpm"

- name: Install Dependencies
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/jod
2 changes: 1 addition & 1 deletion apps/obsidian/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/mime-types": "3.0.1",
"@types/node": "^20",
"@types/node": "catalog:",
"@types/react": "catalog:obsidian",
"@types/react-dom": "catalog:obsidian",
"autoprefixer": "^10.4.21",
Expand Down
2 changes: 1 addition & 1 deletion apps/roam/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@repo/typescript-config": "workspace:*",
"@types/file-saver": "2.0.5",
"@types/nanoid": "2.0.0",
"@types/node": "^20",
"@types/node": "catalog:",
"@types/react": "catalog:roam",
"@types/react-dom": "catalog:roam",
"@types/react-vertical-timeline-component": "^3.3.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const batchInsertEmbeddingsProcess = async (
supabase: Awaited<ReturnType<typeof createClient>>,
embeddingItems: ContentEmbeddingVecTablesInsert[],
): Promise<PostgrestResponse<ContentEmbeddingVecTables>> => {
// groupBy is node21 only, we are using 20. Group by model, by hand.
// groupBy is node21 only, this was implemented in node20. Group by model, by hand.
// Note: This means that later index values may be totally wrong.
// Note2: The key is a ModelName, but I cannot use an enum as a key.
const byModel: { [key: string]: ContentEmbeddingVecTablesInsert[] } = {};
Expand Down
2 changes: 1 addition & 1 deletion apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@repo/types": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"autoprefixer": "^10.4.20",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"typescript": "5.5.4"
},
"engines": {
"node": ">=20"
"node": ">=22"
},
"packageManager": "pnpm@10.15.1",
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@cucumber/cucumber": "^12.7.0",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/node": "^20",
"@types/node": "catalog:",
"@vercel/sdk": "^1.19.40",
"dotenv": "^16.6.1",
"eslint": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.5.4",
"@types/eslint": "catalog:",
"@types/node": "^20.11.24",
"@types/node": "catalog:",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"devDependencies": {
"@repo/typescript-config": "workspace:*",
"@repo/eslint-config": "workspace:*",
"@types/node": "^20.11.24",
"@types/node": "catalog:",
"eslint": "catalog:"
},
"scripts": {
Expand Down
Loading