chore(test-deps): bump [email protected], [email protected], [email protected] - #221
Conversation
|
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.



This pull request updates dependencies, improves CI workflows, and adds new test coverage. The main changes include upgrading GitHub Actions and related dependencies, optimizing npm install steps, introducing compatibility for older Node.js versions, and adding unit tests for the
FetchFacadeutility.CI/CD and Dependency Upgrades:
actions/checkout,actions/setup-node,actions/github-script,sonarsource/sonarqube-scan-action) to their latest major versions for improved security and compatibility. [1] [2] [3] [4] [5] [6] [7]package.jsonto the latest versions, including@typescript-eslint/*,c8,eslint,mocha, andsinon.mocha-compatas an optional dependency to enable compatibility testing with older Node.js versions.Workflow and Install Optimization:
npm installsteps in workflows to usenpm install --omit=optionalfor faster, leaner installs, except for Node.js 16.x/18.x in matrix builds, where regular install is retained for compatibility. [1] [2] [3] [4] [5]test-compatusingmocha-compat) for Node.js 16.x/18.x, and standard tests for newer versions.test-compatnpm script to run tests usingmocha-compatfor legacy Node.js support.Testing Improvements:
FetchFacadeintests/utils/fetchFacade.test.js, covering HTTP/HTTPS requests, request body handling, response status, and error scenarios.Other:
versionfield from.devcontainer/docker-compose.ymlfor Docker Compose compatibility.