-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding prettier * removed README mangling * removed extra lines * added test coverage for withParams to prevent coverup of other attributes, and to test binding * fixed verify
- Loading branch information
Showing
39 changed files
with
602 additions
and
501 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
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,23 +1,28 @@ | ||
### Description | ||
|
||
Please explain the changes you made here. | ||
|
||
### Issue Related | ||
- Link to the related issue: | ||
|
||
- Link to the related issue: | ||
|
||
### Type of Change (select one and follow subtasks) | ||
|
||
- [ ] Maintenance or repo-level work (e.g. linting, build, tests, refactoring, etc.) | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Is this a mainstream benefit or an edge case? | ||
- [ ] Is it worth the bytes? | ||
- [ ] Breaking change (fix or feature that would cause existing functionality/userland code to not work as expected) | ||
- [ ] Explain why a breaking change is necessary: | ||
- [ ] Explain why a breaking change is necessary: | ||
- [ ] This change requires (or is) a documentation update | ||
- [ ] I have added necessary local documentation (if appropriate) | ||
- [ ] I have added necessary [itty.dev](https://github.com/kwhitley/itty.dev) documentation (if appropriate) | ||
|
||
### Testing | ||
### Testing | ||
|
||
Please describe the tests that you ran to verify your changes. | ||
|
||
### Checklist | ||
|
||
- [ ] I have read the [CONTRIBUTING](../CONTRIBUTING.md) doc |
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,25 +1,23 @@ | ||
on: ["push", "pull_request"] | ||
on: ['push', 'pull_request'] | ||
|
||
name: Coveralls | ||
|
||
jobs: | ||
|
||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- uses: actions/checkout@v1 | ||
|
||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
|
||
- name: npm install, npm run coverage | ||
run: | | ||
npm install | ||
npm run coverage | ||
- name: npm install, npm run coverage | ||
run: | | ||
npm install | ||
npm run coverage | ||
- name: Coveralls | ||
uses: coverallsapp/github-action@v2 | ||
- name: Coveralls | ||
uses: coverallsapp/github-action@v2 |
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,4 @@ | ||
trailingComma: 'es5' | ||
tabWidth: 2 | ||
semi: false | ||
singleQuote: true |
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
Oops, something went wrong.