From 97444b7b777e427fc5f3d0cc8ed409f4ad47db05 Mon Sep 17 00:00:00 2001
From: Jerad Bitner <sirkitree@gmail.com>
Date: Fri, 1 Nov 2024 06:13:29 -0700
Subject: [PATCH 1/2] Update ci.yaml

ensure that our ci is running node-version 22 so the automated ci stops failing
---
 .github/workflows/ci.yaml | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 728c47f7d2f..fb44440d03d 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -1,25 +1,29 @@
 name: ci
-
 on:
     push:
         branches: [main]
     pull_request:
         branches: [main]
-
 jobs:
     check:
         runs-on: ubuntu-latest
         steps:
             - uses: actions/checkout@v4
+            
             - uses: pnpm/action-setup@v3
               with:
                   version: 9.4.0
-
+            
+            - uses: actions/setup-node@v4
+              with:
+                  node-version: '22'
+                  cache: 'pnpm'
+                  
             - name: Install dependencies
               run: pnpm i
-
+              
             - name: Run Prettier
               run: pnpm run prettier --check .
-
+              
             - name: Build packages
               run: pnpm run build

From ffe32593689e5abc2ed637437e9e74590c20f07d Mon Sep 17 00:00:00 2001
From: Jerad Bitner <sirkitree@gmail.com>
Date: Fri, 1 Nov 2024 06:15:15 -0700
Subject: [PATCH 2/2] Update ci.yaml

---
 .github/workflows/ci.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index fb44440d03d..5a9bb59b1cf 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -16,7 +16,7 @@ jobs:
             
             - uses: actions/setup-node@v4
               with:
-                  node-version: '22'
+                  node-version: '23'
                   cache: 'pnpm'
                   
             - name: Install dependencies