chore(deps): upgrade frontend toolchain (TS6/Vite8/Vitest4) + add frontend CI#17
Merged
Merged
Conversation
Bumps the app's dev toolchain to current majors and the Tauri API to the latest patch, subsuming Dependabot PRs #7/#8/#9/#10: - typescript 5.6 → 6.0.3 - vite 5.4 → 8.0.16 - vitest 2.1 → 4.1.9 - @tauri-apps/api → 2.11.1 Verified locally: `npm ci && npm run build` (tsc + vite) and the 24 vitest tests all pass on the upgraded toolchain. Also adds a `frontend` job to CI (type-check, build, test) — the frontend was previously not exercised by any workflow, which is why these dependency bumps couldn't be validated automatically. The new job builds and tests the upgraded toolchain here and gates future frontend bumps. https://claude.ai/code/session_016jgMTwiYCiZA8F9JMFGfWR
This was referenced Jun 18, 2026
GamalAnwar
added a commit
that referenced
this pull request
Jun 18, 2026
Bumps the app's dev toolchain to current majors and the Tauri API to the latest patch, subsuming Dependabot PRs #7/#8/#9/#10: - typescript 5.6 → 6.0.3 - vite 5.4 → 8.0.16 - vitest 2.1 → 4.1.9 - @tauri-apps/api → 2.11.1 Verified locally: `npm ci && npm run build` (tsc + vite) and the 24 vitest tests all pass on the upgraded toolchain. Also adds a `frontend` job to CI (type-check, build, test) — the frontend was previously not exercised by any workflow, which is why these dependency bumps couldn't be validated automatically. The new job builds and tests the upgraded toolchain here and gates future frontend bumps.
GamalAnwar
added a commit
that referenced
this pull request
Jun 18, 2026
Bumps the app's dev toolchain to current majors and the Tauri API to the latest patch, subsuming Dependabot PRs #7/#8/#9/#10: - typescript 5.6 → 6.0.3 - vite 5.4 → 8.0.16 - vitest 2.1 → 4.1.9 - @tauri-apps/api → 2.11.1 Verified locally: `npm ci && npm run build` (tsc + vite) and the 24 vitest tests all pass on the upgraded toolchain. Also adds a `frontend` job to CI (type-check, build, test) — the frontend was previously not exercised by any workflow, which is why these dependency bumps couldn't be validated automatically. The new job builds and tests the upgraded toolchain here and gates future frontend bumps.
GamalAnwar
added a commit
that referenced
this pull request
Jun 18, 2026
Bumps the app's dev toolchain to current majors and the Tauri API to the latest patch, subsuming Dependabot PRs #7/#8/#9/#10: - typescript 5.6 → 6.0.3 - vite 5.4 → 8.0.16 - vitest 2.1 → 4.1.9 - @tauri-apps/api → 2.11.1 Verified locally: `npm ci && npm run build` (tsc + vite) and the 24 vitest tests all pass on the upgraded toolchain. Also adds a `frontend` job to CI (type-check, build, test) — the frontend was previously not exercised by any workflow, which is why these dependency bumps couldn't be validated automatically. The new job builds and tests the upgraded toolchain here and gates future frontend bumps.
GamalAnwar
added a commit
that referenced
this pull request
Jun 18, 2026
Bumps the app's dev toolchain to current majors and the Tauri API to the - typescript 5.6 → 6.0.3 - vite 5.4 → 8.0.16 - vitest 2.1 → 4.1.9 - @tauri-apps/api → 2.11.1 Verified locally: `npm ci && npm run build` (tsc + vite) and the 24 vitest tests all pass on the upgraded toolchain. Also adds a `frontend` job to CI (type-check, build, test) — the frontend was previously not exercised by any workflow, which is why these dependency bumps couldn't be validated automatically. The new job builds and tests the upgraded toolchain here and gates future frontend bumps.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Lands the frontend dependency upgrades from Dependabot #7/#8/#9/#10 as one verified change, and adds the missing frontend CI job that makes them safe to land.
Why one PR instead of merging the four
The four npm PRs conflict on
package-lock.json, and — more importantly — our CI didn't build the frontend at all, so none of them were actually validated. I upgraded all four together locally and confirmed the combined end-state works:typescript5.6 → 6.0.3vite5.4 → 8.0.16vitest2.1 → 4.1.9@tauri-apps/api→ 2.11.1npm ci && npm run build(tsc + vite) and the 24 vitest tests all pass on the upgraded toolchain.Closes the root-cause gap
Adds a
frontendCI job (Node 20:npm ci→npm run build→vitest run). The frontend was never exercised by a workflow, which is exactly why these bumps were risky to merge blind. The new job validates this upgrade in CI and gates every future frontend dependency bump.Merging this will auto-close Dependabot #7, #8, #9, #10.
🤖 Generated with Claude Code
Generated by Claude Code