This repository was archived by the owner on Feb 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
17 changed files
with
173 additions
and
8,307 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,64 @@ | ||
--- | ||
name: "\U0001F41E Bug report" | ||
about: Report a bug or problem | ||
labels: Bug | ||
--- | ||
|
||
# 🐞 Bug Report | ||
|
||
### Description | ||
|
||
<!-- ✍️--> A clear and concise description of the problem... | ||
|
||
<pre> | ||
<code> | ||
|
||
</code> | ||
</pre> | ||
|
||
### Has this worked before in a previous version? | ||
|
||
<!-- Did this behavior use to work in the previous version? --> | ||
Yes, the previous version in which this bug was not present was: | ||
|
||
<pre> | ||
<code> | ||
|
||
</code> | ||
</pre> | ||
|
||
## 🔬 Minimal Reproduction | ||
|
||
<!-- ✍️--> Please let us know how we can reproduce this issue. | ||
<pre> | ||
<code> | ||
|
||
</code> | ||
</pre> | ||
|
||
## 🔥 Error | ||
<!-- ✍️--> If the issue is accompanied by an error, please share the error logs with us below. If you have a lot of logs, place make a paste bin with your logs and share the link with us here: | ||
|
||
<pre><code> | ||
|
||
|
||
</code></pre> | ||
|
||
|
||
## 🌍 Your Environment | ||
|
||
**Operating System:** | ||
|
||
<pre> | ||
<code> | ||
|
||
</code> | ||
</pre> | ||
|
||
**Anything else relevant?** | ||
|
||
<pre> | ||
<code> | ||
|
||
</code> | ||
</pre> |
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,27 @@ | ||
--- | ||
name: "✨ Feature Request" | ||
about: Suggest a new feature or enhancement | ||
labels: Enhancement | ||
--- | ||
|
||
# ✨ Feature Request | ||
|
||
### Description | ||
|
||
<!-- ✍️--> A clear and concise description of the feature you would like to see... | ||
|
||
<pre> | ||
<code> | ||
|
||
</code> | ||
</pre> | ||
|
||
### Use Case | ||
|
||
<!-- ✍️--> Explain the context and how this feature will be used... | ||
|
||
<pre> | ||
<code> | ||
|
||
</code> | ||
</pre> |
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,12 @@ | ||
# Description | ||
|
||
Please provide a detailed description of what was done in this PR | ||
|
||
# Changes include | ||
|
||
- [ ] Bugfix (non-breaking change that solves an issue) | ||
- [ ] New feature (non-breaking change that adds functionality) | ||
|
||
### Manual tests | ||
|
||
Please complete this section if you ran manual tests for this functionality, otherwise delete it |
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,29 @@ | ||
name: Format | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Run Format | ||
run: npm run format |
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,29 @@ | ||
name: Lint | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Run Lint | ||
run: npm run lint |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.