This repository was archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
feat: ts types, github ci and clean up #39
Merged
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
6826711
feat: ts types, github ci and clean up
hugomrdias 709e115
fix more types and ci
hugomrdias e31f992
Update src/keytransform.js
hugomrdias f0e324f
Update src/keytransform.js
hugomrdias 67a8162
Update src/keytransform.js
hugomrdias a6b241a
Update src/mount.js
hugomrdias bb89d0e
Update src/mount.js
hugomrdias 0096eaf
Update src/namespace.js
hugomrdias d710e97
Update src/namespace.js
hugomrdias c59d259
Update src/shard.js
hugomrdias d95855e
Update .github/workflows/main.yml
hugomrdias ecd45d9
Update src/keytransform.js
hugomrdias d5312e6
Update src/keytransform.js
hugomrdias 973c587
Update src/keytransform.js
hugomrdias 93065f5
Update src/keytransform.js
hugomrdias dd6328b
Update src/tiered.js
hugomrdias c1787e1
Update src/tiered.js
hugomrdias 674c4de
Update src/tiered.js
hugomrdias 0e389f4
Update src/sharding.js
hugomrdias 78f9a9a
Update src/sharding.js
hugomrdias 754de48
Update src/sharding.js
hugomrdias 85b0019
Update src/sharding.js
hugomrdias b203ccf
Update src/sharding.js
hugomrdias 068759b
Update src/sharding.js
hugomrdias fd85631
Update src/sharding.js
hugomrdias ea63f1d
Update src/tiered.js
hugomrdias d239031
fix: feedback
hugomrdias 81233e0
Merge branch 'feat/ts-types' of https://github.com/ipfs/js-datastore-…
hugomrdias 5c53bc8
chore: change ci to npm
hugomrdias d4fbde5
chore:ci
hugomrdias e7b39e1
add prepare
hugomrdias edbaa19
ci
hugomrdias 10ae98e
fix: ci
hugomrdias f5a3d56
fix: new aegir config and remove typesVersion
hugomrdias b727005
chore: remove gh dep url
achingbrain cabcdea
fix: update interface-datastore
hugomrdias 2aab333
chore: remove gh url
achingbrain File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,67 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: npm install | ||
- run: npx aegir lint | ||
- uses: gozala/typescript-error-reporter-action@v1.0.8 | ||
- run: npx aegir build | ||
- run: npx aegir dep-check | ||
- uses: ipfs/aegir/actions/bundle-size@master | ||
name: size | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
test-node: | ||
needs: check | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest, ubuntu-latest, macos-latest] | ||
node: [12, 14] | ||
fail-fast: true | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: npm install | ||
- run: npx nyc --reporter=lcov aegir test -t node -- --bail | ||
- uses: codecov/codecov-action@v1 | ||
test-chrome: | ||
needs: check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: npm install | ||
- run: npx aegir test -t browser -t webworker --bail | ||
test-firefox: | ||
needs: check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: npm install | ||
- run: npx aegir test -t browser -t webworker --bail -- --browsers FirefoxHeadless | ||
test-electron-main: | ||
needs: check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: npm install | ||
- run: npx xvfb-maybe aegir test -t electron-main --bail | ||
test-electron-renderer: | ||
needs: check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: npm install | ||
- run: npx xvfb-maybe aegir test -t electron-renderer --bail |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.