Skip to content

Commit 370a700

Browse files
committed
Auto-generated commit
1 parent da5532b commit 370a700

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
@@ -202,6 +202,21 @@ f( 5, 3, done );
202202

203203
<!-- /.references -->
204204

205+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
206+
207+
<section class="related">
208+
209+
* * *
210+
211+
## See Also
212+
213+
- [`@stdlib/utils/async/compose`][@stdlib/utils/async/compose]: function composition.
214+
- [`@stdlib/utils/function-sequence`][@stdlib/utils/function-sequence]: function sequence.
215+
216+
</section>
217+
218+
<!-- /.related -->
219+
205220
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
206221

207222

@@ -261,6 +276,14 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
261276

262277
[@stdlib/utils/async/compose]: https://github.com/stdlib-js/utils-async-compose
263278

279+
<!-- <related-links> -->
280+
281+
[@stdlib/utils/async/compose]: https://github.com/stdlib-js/utils-async-compose
282+
283+
[@stdlib/utils/function-sequence]: https://github.com/stdlib-js/utils-function-sequence
284+
285+
<!-- </related-links> -->
286+
264287
</section>
265288

266289
<!-- /.links -->

0 commit comments

Comments
 (0)