chore: Update package.json and expand GitHub Actions test matrix#55
Closed
google-labs-jules[bot] wants to merge 2 commits intomasterfrom
Closed
chore: Update package.json and expand GitHub Actions test matrix#55google-labs-jules[bot] wants to merge 2 commits intomasterfrom
google-labs-jules[bot] wants to merge 2 commits intomasterfrom
Conversation
This commit applies several improvements to the project configuration based on user feedback: 1. The `package.json` file has been restructured for better readability and consistency. Missing properties (`engines`, `bugs`, `homepage`) have been added, and the `author` and `repository` fields have been updated to a standard format. 2. The `engines.node` field has been set to `>=14` based on a source code analysis to ensure the package is used with a compatible Node.js version. 3. The GitHub Actions testing workflow (`run_test.yml`) has been updated to run tests against all current LTS versions of Node.js (14, 16, 18, 20) and the latest stable version (22) to ensure broad compatibility.
This commit applies several improvements to the project configuration based on extensive user feedback: 1. The `package.json` file has been restructured for better readability and consistency. Missing properties (`engines`, `bugs`, `homepage`) have been added, and the `author` and `repository` fields have been updated to a standard format. 2. Support for Node.js v14 has been dropped. The `engines.node` field in `package.json` has been updated to `>=16`. 3. The GitHub Actions testing workflow (`run_test.yml`) has been updated to reflect this policy, with the test matrix now running on Node.js versions 16, 18, 20, and 22.
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 change improves the project's configuration by restructuring the
package.jsonfor clarity, setting the correct minimum Node.js engine version based on code analysis, and expanding the GitHub Actions test matrix to cover all current LTS Node.js versions plus the latest stable release.