-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mike Turley <[email protected]>
- Loading branch information
Showing
56 changed files
with
1,730 additions
and
1,414 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 |
---|---|---|
@@ -1,28 +1,28 @@ | ||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "55...95" | ||
range: '55...95' | ||
|
||
status: | ||
project: | ||
default: | ||
target: "60%" | ||
target: '60%' | ||
patch: | ||
default: off | ||
changes: | ||
default: off | ||
|
||
comment: | ||
layout: "header, reach, diff, flags, files, footer" | ||
layout: 'header, reach, diff, flags, files, footer' | ||
behavior: default | ||
require_changes: no | ||
require_base: no | ||
require_head: yes | ||
|
||
ignore: | ||
- "src/common/*" | ||
- "src/setupTests.js" | ||
- "src/**/*store.js" | ||
- "src/redux/index.js" | ||
- "src/components/app.js" | ||
- "src/redux/middleware/*" | ||
- 'src/common/*' | ||
- 'src/setupTests.js' | ||
- 'src/**/*store.js' | ||
- 'src/redux/index.js' | ||
- 'src/components/app.js' | ||
- 'src/redux/middleware/*' |
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 |
---|---|---|
@@ -1,28 +1,37 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
## Bug Description: | ||
|
||
<!-- Provide a description of the issue being raised. --> | ||
|
||
### Expected behavior | ||
|
||
<!-- Describe the expected behavior for the program. --> | ||
|
||
... | ||
|
||
### Actual behavior | ||
|
||
<!-- Provide the actual behavior for the program. --> | ||
|
||
... | ||
|
||
### Steps to reproduce | ||
|
||
<!-- List clear steps to reproduce the bug. --> | ||
|
||
1. | ||
1. | ||
|
||
## Additional Context | ||
|
||
<!-- Append a demo/screenshot/animated gif of the problem --> | ||
|
||
### Version Information | ||
|
||
<!-- Package.json version, tag, or git commit information. --> | ||
|
||
... |
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,27 +1,34 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
|
||
--- | ||
|
||
## Feature description | ||
|
||
As user X, I want Y to happen so that Z. | ||
|
||
### Is your feature request related to a problem? | ||
|
||
<!-- Provide a clear, 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. --> | ||
|
||
... | ||
___ | ||
|
||
--- | ||
|
||
## Acceptance Criteria | ||
|
||
- [ ] Verify that users can X Y Z | ||
|
||
___ | ||
--- | ||
|
||
## Additional context | ||
|
||
<!-- Add any other context. Is there an associated storyboard? Attach the link/png/screenshot --> | ||
... | ||
|
||
... |
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
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,6 +1,5 @@ | ||
name: Commit lint | ||
on: | ||
pull_request | ||
on: pull_request | ||
env: | ||
BRANCH: ${{ github.base_ref }} | ||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ on: | |
push: | ||
branches: [master, main, dev**] | ||
tags: | ||
- "*" | ||
- '*' | ||
pull_request: | ||
env: | ||
COV_NODE_VERSION: 18 | ||
|
@@ -58,7 +58,7 @@ jobs: | |
uses: ncipollo/[email protected] | ||
if: ${{ success() && startsWith(matrix.node-version, env.COV_NODE_VERSION) && startsWith(github.ref, 'refs/tags/') }} | ||
with: | ||
artifacts: "${{ env.UPSTREAM_TAR }}.gz" | ||
artifacts: '${{ env.UPSTREAM_TAR }}.gz' | ||
# set allow updates so we can create releases to trigger this | ||
allowUpdates: true | ||
# don't override what's set on the release | ||
|
Oops, something went wrong.