Skip to content

Commit 35a6616

Browse files
committed
Auto-generated commit
1 parent d6c7c07 commit 35a6616

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,21 @@ mapKeysAsync( files, read, done );
369369

370370
<!-- /.references -->
371371

372+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
373+
374+
<section class="related">
375+
376+
* * *
377+
378+
## See Also
379+
380+
- [`@stdlib/utils/map-keys`][@stdlib/utils/map-keys]: map keys from one object to a new object having the same values.
381+
- [`@stdlib/utils/async/map-values`][@stdlib/utils/async/map-values]: map values from one object to a new object having the same keys.
382+
383+
</section>
384+
385+
<!-- /.related -->
386+
372387
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
373388

374389

@@ -428,6 +443,14 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
428443

429444
[ecma-262]: http://www.ecma-international.org/ecma-262/5.1/#sec-12.6.4
430445

446+
<!-- <related-links> -->
447+
448+
[@stdlib/utils/map-keys]: https://github.com/stdlib-js/utils-map-keys
449+
450+
[@stdlib/utils/async/map-values]: https://github.com/stdlib-js/utils-async-map-values
451+
452+
<!-- </related-links> -->
453+
431454
</section>
432455

433456
<!-- /.links -->

0 commit comments

Comments
 (0)