From a9c15ab384d8c4d68c60ef511824226b117542fb Mon Sep 17 00:00:00 2001 From: David Crespo Date: Mon, 14 Jul 2025 16:18:04 -0500 Subject: [PATCH 1/8] try CI with ubuntu latest instead of GIANT mac runner --- .github/workflows/lintBuildTest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lintBuildTest.yml b/.github/workflows/lintBuildTest.yml index 478a7b224..d5724c089 100644 --- a/.github/workflows/lintBuildTest.yml +++ b/.github/workflows/lintBuildTest.yml @@ -8,7 +8,7 @@ on: jobs: install: timeout-minutes: 60 - runs-on: macos-15-xlarge + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -26,7 +26,7 @@ jobs: run: npm install ci: timeout-minutes: 5 - runs-on: macos-15-xlarge + runs-on: ubuntu-latest needs: install steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: playwright: name: Playwright (${{ matrix.browser }}) timeout-minutes: 20 - runs-on: macos-15-xlarge + runs-on: ubuntu-latest needs: install strategy: fail-fast: false From 56bad44c2463c833edb33c51994d25e0e3fc1a97 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Mon, 14 Jul 2025 16:22:18 -0500 Subject: [PATCH 2/8] trivial package change to bust npm cache --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6a37219d4..b002148fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -102,7 +102,7 @@ "tsx": "^4.19.2", "type-fest": "^4.33.0", "typescript": "~5.8.3", - "vite": "^7.0.0", + "vite": "^7.0.4", "vite-plugin-html": "^3.2.2", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.2.4" @@ -14406,9 +14406,9 @@ } }, "node_modules/vite": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/vite/-/vite-7.0.0.tgz", - "integrity": "sha512-ixXJB1YRgDIw2OszKQS9WxGHKwLdCsbQNkpJN171udl6szi/rIySHL6/Os3s2+oE4P/FLD4dxg4mD7Wust+u5g==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.0.4.tgz", + "integrity": "sha512-SkaSguuS7nnmV7mfJ8l81JGBFV7Gvzp8IzgE8A8t23+AxuNX61Q5H1Tpz5efduSN7NHC8nQXD3sKQKZAu5mNEA==", "dev": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 57f9bf1d6..7adb1fce1 100644 --- a/package.json +++ b/package.json @@ -125,7 +125,7 @@ "tsx": "^4.19.2", "type-fest": "^4.33.0", "typescript": "~5.8.3", - "vite": "^7.0.0", + "vite": "^7.0.4", "vite-plugin-html": "^3.2.2", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.2.4" From 8822c1cbf112d6e3150e78ee88fa7dce5c8f2d18 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Mon, 14 Jul 2025 16:20:12 -0500 Subject: [PATCH 3/8] ubuntu 4 core --- .github/workflows/lintBuildTest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lintBuildTest.yml b/.github/workflows/lintBuildTest.yml index d5724c089..2642daa46 100644 --- a/.github/workflows/lintBuildTest.yml +++ b/.github/workflows/lintBuildTest.yml @@ -8,7 +8,7 @@ on: jobs: install: timeout-minutes: 60 - runs-on: ubuntu-latest + runs-on: ubuntu-22.04-4core steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -26,7 +26,7 @@ jobs: run: npm install ci: timeout-minutes: 5 - runs-on: ubuntu-latest + runs-on: ubuntu-22.04-4core needs: install steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: playwright: name: Playwright (${{ matrix.browser }}) timeout-minutes: 20 - runs-on: ubuntu-latest + runs-on: ubuntu-22.04-4core needs: install strategy: fail-fast: false From 408241929fc6cbc49a9c4be177b90d10c33f7bba Mon Sep 17 00:00:00 2001 From: David Crespo Date: Mon, 14 Jul 2025 16:23:09 -0500 Subject: [PATCH 4/8] ubuntu 8 core --- .github/workflows/lintBuildTest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lintBuildTest.yml b/.github/workflows/lintBuildTest.yml index 2642daa46..3c2759d64 100644 --- a/.github/workflows/lintBuildTest.yml +++ b/.github/workflows/lintBuildTest.yml @@ -8,7 +8,7 @@ on: jobs: install: timeout-minutes: 60 - runs-on: ubuntu-22.04-4core + runs-on: ubuntu-22.04-8core steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -26,7 +26,7 @@ jobs: run: npm install ci: timeout-minutes: 5 - runs-on: ubuntu-22.04-4core + runs-on: ubuntu-22.04-8core needs: install steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: playwright: name: Playwright (${{ matrix.browser }}) timeout-minutes: 20 - runs-on: ubuntu-22.04-4core + runs-on: ubuntu-22.04-8core needs: install strategy: fail-fast: false From 53cff6afa504e286fa12f63658557e8c037fa74e Mon Sep 17 00:00:00 2001 From: Augustus Mayo Date: Tue, 15 Jul 2025 09:36:41 -0500 Subject: [PATCH 5/8] Update runner target --- .github/workflows/lintBuildTest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lintBuildTest.yml b/.github/workflows/lintBuildTest.yml index 3c2759d64..4dd866623 100644 --- a/.github/workflows/lintBuildTest.yml +++ b/.github/workflows/lintBuildTest.yml @@ -8,7 +8,7 @@ on: jobs: install: timeout-minutes: 60 - runs-on: ubuntu-22.04-8core + runs-on: ubuntu-latest-8core steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -26,7 +26,7 @@ jobs: run: npm install ci: timeout-minutes: 5 - runs-on: ubuntu-22.04-8core + runs-on: ubuntu-latest-8core needs: install steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: playwright: name: Playwright (${{ matrix.browser }}) timeout-minutes: 20 - runs-on: ubuntu-22.04-8core + runs-on: ubuntu-latest-8core needs: install strategy: fail-fast: false From 5252f50617ff497c2ec94f26ba269f17d2291718 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Tue, 15 Jul 2025 11:02:27 -0500 Subject: [PATCH 6/8] back to ubuntu-latest. let's see another safari run --- .github/workflows/lintBuildTest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lintBuildTest.yml b/.github/workflows/lintBuildTest.yml index 4dd866623..d5724c089 100644 --- a/.github/workflows/lintBuildTest.yml +++ b/.github/workflows/lintBuildTest.yml @@ -8,7 +8,7 @@ on: jobs: install: timeout-minutes: 60 - runs-on: ubuntu-latest-8core + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -26,7 +26,7 @@ jobs: run: npm install ci: timeout-minutes: 5 - runs-on: ubuntu-latest-8core + runs-on: ubuntu-latest needs: install steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: playwright: name: Playwright (${{ matrix.browser }}) timeout-minutes: 20 - runs-on: ubuntu-latest-8core + runs-on: ubuntu-latest needs: install strategy: fail-fast: false From 7517be850c6ec5d9500d3e355710cf61963b8134 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Thu, 17 Jul 2025 21:21:06 -0500 Subject: [PATCH 7/8] try the small mac runners again --- .github/workflows/lintBuildTest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lintBuildTest.yml b/.github/workflows/lintBuildTest.yml index d5724c089..8a45e450f 100644 --- a/.github/workflows/lintBuildTest.yml +++ b/.github/workflows/lintBuildTest.yml @@ -8,7 +8,7 @@ on: jobs: install: timeout-minutes: 60 - runs-on: ubuntu-latest + runs-on: macos-15 steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -26,7 +26,7 @@ jobs: run: npm install ci: timeout-minutes: 5 - runs-on: ubuntu-latest + runs-on: macos-15 needs: install steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: playwright: name: Playwright (${{ matrix.browser }}) timeout-minutes: 20 - runs-on: ubuntu-latest + runs-on: macos-15 needs: install strategy: fail-fast: false From 321bdb0cf6aef3de8f81137c6d911f9bb2abf98c Mon Sep 17 00:00:00 2001 From: David Crespo Date: Thu, 17 Jul 2025 21:29:56 -0500 Subject: [PATCH 8/8] dep bump to bust npm cache --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index b002148fd..c1a911efc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -51,7 +51,7 @@ "use-debounce": "^10.0.4", "uuid": "^10.0.0", "zod": "^3.24.3", - "zustand": "^5.0.3" + "zustand": "^5.0.6" }, "devDependencies": { "@ianvs/prettier-plugin-sort-imports": "^4.4.1", @@ -15213,9 +15213,9 @@ } }, "node_modules/zustand": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.3.tgz", - "integrity": "sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.6.tgz", + "integrity": "sha512-ihAqNeUVhe0MAD+X8M5UzqyZ9k3FFZLBTtqo6JLPwV53cbRB/mJwBI0PxcIgqhBBHlEs8G45OTDTMq3gNcLq3A==", "license": "MIT", "engines": { "node": ">=12.20.0" diff --git a/package.json b/package.json index 7adb1fce1..26a70f1d2 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ "use-debounce": "^10.0.4", "uuid": "^10.0.0", "zod": "^3.24.3", - "zustand": "^5.0.3" + "zustand": "^5.0.6" }, "devDependencies": { "@ianvs/prettier-plugin-sort-imports": "^4.4.1",