Skip to content

Commit eee67d4

Browse files
committed
Auto-generated commit
1 parent be3c452 commit eee67d4

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ jobs:
4444
run: |
4545
npm install || npm install || npm install
4646
timeout-minutes: 15
47+
- name: Build native add-on (if present)
48+
run: |
49+
if [ -f "binding.gyp" ]; then
50+
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
51+
fi
4752
- name: Run tests
4853
id: tests
4954
run: |

.github/workflows/test_coverage.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
run: |
4141
npm install || npm install || npm install
4242
timeout-minutes: 15
43+
- name: Build native add-on (if present)
44+
run: |
45+
if [ -f "binding.gyp" ]; then
46+
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
47+
fi
4348
- name: Calculate test coverage
4449
run: |
4550
npm run test-cov || npm run test-cov || npm run test-cov

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,22 @@ countByAsync( files, indicator, done );
387387

388388
<!-- /.references -->
389389

390+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
391+
392+
<section class="related">
393+
394+
* * *
395+
396+
## See Also
397+
398+
- [`@stdlib/utils/count-by`][@stdlib/utils/count-by]: group values according to an indicator function and return group counts.
399+
- [`@stdlib/utils/async/group-by`][@stdlib/utils/async/group-by]: group values according to an indicator function.
400+
- [`@stdlib/utils/async/tabulate-by`][@stdlib/utils/async/tabulate-by]: generate a frequency table according to an indicator function.
401+
402+
</section>
403+
404+
<!-- /.related -->
405+
390406
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
391407

392408

@@ -450,6 +466,16 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
450466

451467
[mdn-object]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
452468

469+
<!-- <related-links> -->
470+
471+
[@stdlib/utils/count-by]: https://github.com/stdlib-js/utils-count-by
472+
473+
[@stdlib/utils/async/group-by]: https://github.com/stdlib-js/utils-async-group-by
474+
475+
[@stdlib/utils/async/tabulate-by]: https://github.com/stdlib-js/utils-async-tabulate-by
476+
477+
<!-- </related-links> -->
478+
453479
</section>
454480

455481
<!-- /.links -->

0 commit comments

Comments
 (0)