-
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.
* chore(docs): remove tech spec in favor of wiki * chore(test): set up unit tests * chore: fix Jest to support ES Modules * chore: set required node version * chore: fix busted return tests * feat: `joinAdInterestGroup` & `leaveAdInterestGroup` functions (#31) * feat: initial checks for function parameters * fix: validate util passing incorrect arg * chore: add utils unit tests * fix: avoid calculating ms per day as per feedback * chore: clean up error message for clarity as per feedback * chore: clean up test language * chore: remove stub function * chore: remove all constants calculations * fix: import using relative path with file suffix * chore: add in jsdocs * chore: remove unnecessary constants abstraction file * chore: move tests out of source directory * chore: ignore mocks file from tests * chore: move unit tests to subdirectory * chore: create API docs * fix: main exports require file suffix * chore: rename dir to match github standards * feat: interest group storage helpers (#35) * feat: create helpers for indexed db * chore: turn off eslint console warnings * feat: add in dist task with rollup * chore: fix async tests * chore: comment out consoles * chore: remove deps * chore: remove another dep * chore: jest is stupid and requires this empty file for some reason * chore: remove node 12 from tests * chore: add in babel config for CI * chore: fix the tests * chore: remove unneeded babel config file * chore: update docs * chore: add in utils README * chore: add language highlights to README * chore(test): create integration test framework (#32) Co-authored-by: Newton Koumantzelis <[email protected]> * chore(deps-dev): bump @theholocron/jest-preset from 0.2.3 to 0.3.0 (#38) Bumps [@theholocron/jest-preset](https://github.com/the-holocron/threepio) from 0.2.3 to 0.3.0. - [Release notes](https://github.com/the-holocron/threepio/releases) - [Commits](https://github.com/the-holocron/threepio/compare/@theholocron/[email protected]...@theholocron/[email protected]) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: update package * chore: fix actions names * chore: add coverage reports * chore: fix actions * chore: fix test job * chore: tweak coverage directory * chore: fix coverage report Co-authored-by: Brad Rodriguez <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
94d3f65
commit 0ef68ca
Showing
54 changed files
with
5,135 additions
and
1,337 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,30 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
- '!main' | ||
pull_request: | ||
branches: | ||
- '**' | ||
- '!main' | ||
|
||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: setup node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
check-latest: true | ||
- name: Install dependencies | ||
env: | ||
CI: true | ||
run: npm ci | ||
- name: Lint | ||
run: npm run lint |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.