-
Notifications
You must be signed in to change notification settings - Fork 18
Fix TSConfig Paths Registration Error on Node 23+ #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0b009da
feat: add bootstrap script requirement to NODE_OPTIONS
ncalteen 1d50cef
fix: add quiet option to dotenv config
ncalteen 185c6db
feat: add CodeQL configuration file and update analysis workflow
ncalteen 51bb32c
feat: add Copilot instructions and configuration files
ncalteen 09b333f
chore: bump version to 5.1.0 in package.json and package-lock.json
ncalteen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| name: JavaScript CodeQL Configuration | ||
|
|
||
| paths-ignore: | ||
| - coverage | ||
| - megalinter-reports | ||
| - node_modules | ||
| - reports |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| # Copilot Instructions | ||
|
|
||
| ## Environment Setup | ||
|
|
||
| Install dependencies by running: | ||
|
|
||
| ```bash | ||
| npm install | ||
| ``` | ||
|
|
||
| ## Testing | ||
|
|
||
| Ensure all unit tests pass by running: | ||
|
|
||
| ```bash | ||
| npm run test | ||
| ``` | ||
|
|
||
| Unit tests should exist in the `__tests__` directory. They are powered by | ||
| `jest`. Fixtures should be placed in the `__fixtures__` directory. | ||
|
|
||
| ## General Coding Guidelines | ||
|
|
||
| - Follow standard TypeScript and JavaScript coding conventions and best | ||
| practices | ||
| - Changes should maintain consistency with existing patterns and style | ||
| - Document changes clearly and thoroughly, including updates to existing | ||
| comments when appropriate | ||
| - Do not include basic, unnecessary comments that simply restate what the code | ||
| is doing (focus on explaining _why_, not _what_) | ||
| - Use consistent error handling patterns throughout the codebase | ||
| - Use TypeScript's type system to ensure type safety and clarity | ||
| - Keep functions focused and manageable | ||
| - Use descriptive variable and function names that clearly convey their purpose | ||
| - Use JSDoc comments to document functions, classes, and complex logic | ||
| - After doing any refactoring, ensure to run `npm run test` to ensure that all | ||
| tests still pass and coverage requirements are met | ||
| - When suggesting code changes, always opt for the most maintainable approach. | ||
| Try your best to keep the code clean and follow "Don't Repeat Yourself" (DRY) | ||
| principles | ||
| - Avoid unnecessary complexity and always consider the long-term maintainability | ||
| of the code | ||
| - When writing unit tests, try to consider edge cases as well as the main path | ||
| of success. This will help ensure that the code is robust and can handle | ||
| unexpected inputs or situations | ||
|
|
||
| ### Versioning | ||
|
|
||
| GitHub Actions are versioned using branch and tag names. Please ensure the | ||
| version in the project's `package.json` is updated to reflect the changes made | ||
| in the codebase. The version should follow | ||
| [Semantic Versioning](https://semver.org/) principles. | ||
|
|
||
| ## Pull Request Guidelines | ||
|
|
||
| When creating a pull request (PR), please ensure that: | ||
|
|
||
| - Keep changes focused and minimal (avoid large changes, or consider breaking | ||
| them into separate, smaller PRs) | ||
| - Formatting checks pass | ||
| - Linting checks pass | ||
| - Unit tests pass and coverage requirements are met | ||
| - If necessary, the `README.md` file is updated to reflect any changes in | ||
| functionality or usage | ||
|
|
||
| The body of the PR should include: | ||
|
|
||
| - A summary of the changes | ||
| - A special note of any changes to dependencies | ||
| - A link to any relevant issues or discussions | ||
| - Any additional context that may be helpful for reviewers | ||
|
|
||
| ## Code Review Guidelines | ||
|
|
||
| When performing a code review, please follow these guidelines: | ||
|
|
||
| - If there are changes that modify the functionality/usage of the action, | ||
| validate that there are changes in the `README.md` file that document the new | ||
| or modified functionality |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "servers": { | ||
| "github": { | ||
| "url": "https://api.githubcopilot.com/mcp/", | ||
| "type": "http" | ||
| } | ||
| }, | ||
| "inputs": [] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "github.copilot.chat.reviewSelection.instructions": [ | ||
| { | ||
| "text": "Review the code changes carefully before accepting them." | ||
| } | ||
| ], | ||
| "github.copilot.chat.commitMessageGeneration.instructions": [ | ||
| { | ||
| "text": "Use conventional commit message format." | ||
| } | ||
| ], | ||
| "github.copilot.chat.pullRequestDescriptionGeneration.instructions": [ | ||
| { "text": "Always include a list of key changes." } | ||
| ] | ||
| } |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "name": "@github/local-action", | ||
| "description": "Local Debugging for GitHub Actions", | ||
| "version": "5.0.1", | ||
| "version": "5.1.0", | ||
| "type": "module", | ||
| "author": "Nick Alteen <[email protected]>", | ||
| "private": false, | ||
|
|
||
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.