-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed tests and added workflows/issues-templates
- Loading branch information
1 parent
5157aec
commit 9e69831
Showing
43 changed files
with
458 additions
and
301 deletions.
There are no files selected for viewing
This file contains 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,20 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint'], | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/eslint-recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'prettier' | ||
], | ||
ignorePatterns: ['node_modules/', 'dist'], | ||
overrides: [ | ||
{ | ||
files: ['src/**/*'], | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off' | ||
} | ||
} | ||
] | ||
}; |
This file contains 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,36 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a bug or issue with the software. | ||
title: '[BUG]' | ||
labels: 'bug' | ||
assignees: '' | ||
--- | ||
|
||
## Bug Report | ||
|
||
**Description of the Bug** | ||
A clear and concise description of the bug. | ||
|
||
**Steps to Reproduce** | ||
|
||
1. Step 1 | ||
2. Step 2 | ||
3. ... | ||
|
||
**Expected Behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Actual Behavior** | ||
A clear and concise description of what actually happens. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Tried Solutions** | ||
Have you tried anything to solve the problem? If yes, what? | ||
|
||
**Additional Context** | ||
Add any other context about the problem here. | ||
|
||
**Additional Information** | ||
Add any other information you think is relevant. |
This file contains 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,24 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest a new feature or enhancement for the project. | ||
title: '[FEATURE]' | ||
labels: 'enhancement' | ||
assignees: '' | ||
--- | ||
|
||
## Feature Request | ||
|
||
**Description of the Feature** | ||
A clear and concise description of the feature you'd like to see added. | ||
|
||
**Motivation** | ||
An explanation of the motivation behind this feature. How would it improve the user experience or utility of the software? | ||
|
||
**Screenshot (Optional)** | ||
If possible, add a screenshot or illustration of the feature you're proposing. | ||
|
||
**Additional Context** | ||
Add any other context or information about the feature that you think is relevant. | ||
|
||
**Additional Information** | ||
Add any other information you think is relevant. |
This file contains 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,32 @@ | ||
--- | ||
name: Help Request | ||
about: Use this template to request help or support. | ||
title: '[HELP]' | ||
labels: help | ||
assignees: '' | ||
--- | ||
|
||
## Help Request | ||
|
||
**Issue Summary** | ||
|
||
[Summarize the issue you are facing concisely.] | ||
|
||
**Describe the problem** | ||
|
||
[Describe what is the problem] | ||
|
||
**Environment** | ||
|
||
- Operating System: [Your OS] | ||
- Browser: [Your Browser] | ||
- Version: [Version Number] | ||
- Any other relevant information | ||
|
||
### Screenshots | ||
|
||
[Include any relevant screenshots if they can help illustrate the issue.] | ||
|
||
### Additional Information | ||
|
||
[Any additional information that may be helpful in diagnosing the issue.] |
This file contains 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,28 @@ | ||
## Pull Request | ||
|
||
**Description** | ||
A brief description of the changes in this pull request. | ||
|
||
**Related Issue** | ||
|
||
- Fixes # (issue number) | ||
- Addresses # (issue number) | ||
|
||
**Changes Made** | ||
Describe the changes you've made. Provide a high-level overview of what has been done in this pull request. | ||
|
||
**Screenshots (if applicable)** | ||
Add screenshots or GIFs to demonstrate the changes, if applicable. | ||
|
||
**Checklist** | ||
|
||
- [ ] I have tested the changes locally. | ||
- [ ] I have updated the documentation accordingly. | ||
- [ ] I have added necessary comments to the code. | ||
- [ ] All tests pass successfully. | ||
|
||
**Additional Notes** | ||
Add any additional notes or comments about the pull request here. | ||
|
||
**Reviewer(s)** | ||
@username1, @username2 |
This file contains 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,45 @@ | ||
name: Test, Lint and Format Code | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
test-lint-and-format: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Clear cache and Install dependencies | ||
run: | | ||
rm -rf node_modules package-lock.json | ||
npm install | ||
- name: Run Build | ||
run: npm run fastBuild | ||
|
||
- name: Run Tests | ||
run: npm run test | ||
|
||
- name: Run Prettier | ||
run: npm run prettier | ||
|
||
- name: Run Linter | ||
run: npm run lint | ||
|
||
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: 'WORKFLOW: Apply code formatting' | ||
branch: ${{ github.head_ref }} | ||
file_pattern: '.' |
This file contains 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,10 @@ | ||
{ | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"printWidth": 100, | ||
"trailingComma": "none", | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto" | ||
} |
This file contains 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 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.