chore: modernize dev tooling and CI (TypeScript 7, vitest, oxlint, codecov, Node 22-26) - #43
Merged
Merged
Conversation
TypeScript 7 (ts-jest and ts-node replaced by @swc/jest and a plain JS copy script), Jest 30, oxlint instead of ESLint, rimraf 6, and a Node 22/24/26 CI matrix with coveralls uploaded from a single job. Only dev dependencies and tooling change.
Coverage Report for CI Build 33967305323Coverage increased (+3.3%) to 97.462%Details
Uncovered ChangesNo uncovered changes found. Coverage Regressions3 previously-covered lines in 2 files lost coverage.
Coverage Stats
💛 - Coveralls |
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.
The dev toolchain was stuck on TypeScript 4, ESLint 7 and Jest 27 with a Node 10 to 14 CI matrix, so every Renovate major bump failed. This updates all of it at once and supersedes the open Renovate PRs.
actions/checkout@v7,actions/setup-node@v7andeditorconfig-checker4. Coverage goes to codecov (replacing coveralls) from the Node 24 job only.tscworks fine, but the compiler API is gone, sots-jestandts-nodehad to go: tests run on vitest 5 (same as the main repo) and the copy script is now plain JS.tsconfig.jsondrops the removedsuppressImplicitAnyIndexErrors,baseUrlandmoduleResolution: node10options and setsrootDirexplicitly.oxlint, same as in the main repo, because typescript-eslint also needs the TS compiler API. The rule set is the old one without the pure formatting rules.@types/node24. Snapshots are regenerated in the vitest format (different key naming and string escaping). The highlighted output itself is unchanged.packageManageris pinned to yarn 1.22.22 so corepack does not pick yarn 4 for a v1 lockfile.Only dev dependencies and tooling change, no release needed.