-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
448 additions
and
286 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,31 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
--- | ||
|
||
<!-- If you delete this template this issue is very likely to be closed. --> | ||
|
||
## Current behaviour | ||
|
||
<!-- Tell us which problem you are facing which might be caused by a bug. --> | ||
|
||
## Expected behaviour | ||
|
||
<!-- If not included in current behaviour please explain what should happen instead. --> | ||
|
||
### Reproduction Example | ||
|
||
<!-- Please provide a minimal example how to reproduce your problem. --> | ||
|
||
## Environment | ||
|
||
<!-- Tell us versions of your environment: --> | ||
|
||
- OS: [macOS, Linux, Windows] | ||
- version of Node.js: | ||
- version of Webpack: | ||
- version of the Plugin: | ||
|
||
## Additional context | ||
|
||
<!-- Add any other context about the problem here. --> |
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,18 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
--- | ||
|
||
<!-- If you delete this template this issue is very likely to be closed. --> | ||
|
||
## Feature request | ||
|
||
**What is motivation or use case for adding/changing the behavior?** | ||
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> | ||
|
||
**Describe the solution you'd like** | ||
<!-- A clear and concise description of what you want to happen. --> | ||
|
||
|
||
**Describe alternatives you've considered** | ||
<!-- A clear and concise description of any alternative solutions or features you've considered. --> |
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,6 @@ | ||
--- | ||
name: Custom issue | ||
about: Something else | ||
--- | ||
|
||
<!-- Bug reports and Feature requests must use other templates, or will be closed --> |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
## Types of changes | ||
|
||
<!-- Please place an `x` in all [ ] that apply: --> | ||
|
||
This PR contains a: | ||
|
||
- [ ] **bugfix** | ||
- [ ] new **feature** | ||
- [ ] **code refactor** | ||
- [ ] **test update** <!-- if bug or feature is checked, this should be too --> | ||
- [ ] **typo fix** | ||
- [ ] **docs change** | ||
- [ ] **breaking change** <!-- fix or feature that change existing functionality --> | ||
|
||
## Motivation / Use-Case | ||
|
||
<!-- | ||
Please explain the motivation or use-case for your change. | ||
What existing problem does the PR solve? | ||
If this PR addresses an issue, please link to the issue. | ||
--> | ||
|
||
## Breaking Changes | ||
|
||
<!-- | ||
If this PR introduces a breaking change, please describe the impact and a | ||
migration path for existing applications. | ||
--> | ||
|
||
## Additional Info | ||
|
||
--- | ||
|
||
## Checklist | ||
|
||
<!-- Go over all the following points, and place an `x` in all the boxes that apply. --> | ||
|
||
- [ ] My code follows the code style of this project. | ||
- [ ] My change requires a change to the documentation. | ||
- [ ] I have updated the documentation accordingly. | ||
- [ ] I have updated the **CHANGELOG.md**. | ||
- [ ] I have read the **CONTRIBUTING** document. | ||
- [ ] I have added tests to cover my changes. | ||
- [ ] All new and existing tests passed. |
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 |
---|---|---|
@@ -1,34 +1,42 @@ | ||
name: Running Code Coverage | ||
|
||
on: [ push, pull_request ] | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- next | ||
pull_request: | ||
branches: | ||
- master | ||
- next | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
integration: | ||
strategy: | ||
matrix: | ||
node-version: [ 12.x, 14.x, 16.x ] | ||
os: [ubuntu-latest] | ||
node-version: [12, 14, 16, 18, 20] | ||
|
||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
fetch-depth: 1 | ||
|
||
- name: Set up Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
run: npm i | ||
|
||
- name: Run the tests | ||
run: npm run test:coverage | ||
|
||
- name: Submit coverage data to codecov | ||
uses: codecov/codecov-action@v1 | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
flags: integration | ||
token: ${{ secrets.CODECOV_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[Code of Conduct](https://github.com/openjs-foundation/code-and-learn/blob/master/CODE_OF_CONDUCT.md) |
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.