Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 13 additions & 95 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,99 +1,17 @@
## Description
## What does this PR do?
<!-- Short description of the changes -->

<!-- Provide a clear and concise description of what this PR does and why it's needed. -->

## Type of Change

<!-- Please delete options that are not relevant. -->

- [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
- [ ] ✨ New feature (non-breaking change which adds functionality)
- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] 📚 Documentation update
- [ ] 🎨 Style/formatting changes (no code change)
- [ ] ♻️ Code refactoring (no functional changes)
- [ ] ⚡ Performance improvement
- [ ] ✅ Tests (adding missing tests or correcting existing tests)
- [ ] 🔧 Build/config changes
- [ ] 🔒 Security fix

## Related Issues

<!-- Link to related issues using: Closes #issue, Fixes #issue, Relates to #issue -->

Closes #
Fixes #
Relates to #

## Changes Made

<!-- List the main changes made in this PR -->

-
-
-

## Screenshots / Videos

<!-- If applicable, add screenshots or videos to help explain your changes -->

| Before | After |
| ------ | ----- |
| | |

## Testing

<!-- Describe the tests you ran to verify your changes. Provide instructions so reviewers can reproduce. -->

### Test Cases

- [ ] Test case 1:
- [ ] Test case 2:
- [ ] Test case 3:

### Manual Testing Steps

1.
2.
3.
## Type of change
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation
- [ ] Other (describe below)

## Checklist
- [ ] Code follows project style (lint passes)
- [ ] Changes have been tested locally

<!-- Mark completed items with an [x] -->

- [ ] My code follows the project's style guidelines
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published
- [ ] I have checked for breaking changes and documented them if applicable
- [ ] I have updated the CHANGELOG.md (if applicable)

## Dependencies

<!-- List any new dependencies added or removed -->

### Added

-

### Removed

-

### Updated

-

## Additional Notes

<!-- Any additional information that reviewers should know -->

## Reviewers

<!-- Tag specific reviewers if needed -->

/cc @
## Video evidence (before / after)
<!-- Add links or attach short videos showing the behavior before and after your changes -->
- **Before:**
- **After:**
8 changes: 4 additions & 4 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
node-version: '20'
cache: 'npm'
cache-dependency-path: package-lock.json

- name: Install dependencies
Expand All @@ -35,8 +35,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
node-version: '20'
cache: 'npm'
cache-dependency-path: package-lock.json

- name: Install dependencies
Expand Down
2 changes: 0 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
. "$(dirname -- "$0")/_/husky.sh"

npm run format
npm run lint
npm run build
5 changes: 5 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint
npm run build
Loading