-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
1 parent
5c7f032
commit f4e9b8b
Showing
7 changed files
with
127 additions
and
13 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,42 @@ | ||
--- | ||
name: "\U0001F41E Bug report" | ||
about: Something is not working as it should | ||
title: "[fix] DESCRIPTIVE TITLE" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### Describe the bug | ||
|
||
- Node.js version: | ||
- OS & version: | ||
|
||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
#### Actual behavior | ||
|
||
... | ||
|
||
#### Expected behavior | ||
|
||
... | ||
|
||
#### Code to reproduce | ||
|
||
```js | ||
... | ||
``` | ||
|
||
<!-- | ||
We encourage you to submit a pull request with a failing test: | ||
- This will make it more likely for us to prioritize your issue. | ||
- It's a good way to prove that the issue is related to Got and not your code. | ||
Example: https://github.com/avajs/ava/blob/master/docs/01-writing-tests.md#failing-tests | ||
--> | ||
|
||
#### Checklist | ||
|
||
- [ ] I have read the documentation. | ||
- [ ] I have tried my code with the latest version of Node.js and @breejs/later. |
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,22 @@ | ||
--- | ||
name: "⭐ Feature request" | ||
about: Suggest an idea for Bree | ||
title: "[feat] DESCRIPTIVE TITLE" | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### What problem are you trying to solve? | ||
|
||
... | ||
|
||
#### Describe the feature | ||
|
||
... | ||
|
||
<!-- Include a usage example of the feature. If the feature is currently possible with a workaround, include that too. --> | ||
|
||
#### Checklist | ||
|
||
- [ ] I have read the documentation and made sure this feature doesn't already exist. |
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,16 @@ | ||
--- | ||
name: "❓ Question" | ||
about: Something is unclear or needs to be discussed | ||
title: "[discussion] DESCRIPTIVE TITLE" | ||
labels: question | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### What would you like to discuss? | ||
|
||
... | ||
|
||
#### Checklist | ||
|
||
- [ ] I have read the documentation. |
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 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test-coverage: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
node_version: | ||
- 10 | ||
- 12 | ||
- 14 | ||
- 16 | ||
|
||
name: Node ${{ matrix.node_version }} on ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node_version }} | ||
|
||
- name: Install yarn | ||
run: npm install -g yarn | ||
|
||
- name: Install dependencies | ||
run: yarn --frozen-lockfile | ||
|
||
- name: Run tests | ||
run: yarn test-coverage | ||
|
||
- name: Run coverage | ||
run: yarn coverage | ||
|
||
- name: Uninstall yarn | ||
if: always() | ||
run: npm uninstall -g yarn |
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
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