Skip to content

Commit 576b067

Browse files
committed
Auto-generated commit
1 parent 177b4ba commit 576b067

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-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: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,23 @@ while ( true ) {
305305

306306
<!-- /.references -->
307307

308+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
309+
310+
<section class="related">
311+
312+
* * *
313+
314+
## See Also
315+
316+
- [`@stdlib/simulate/iter/bartlett-pulse`][@stdlib/simulate/iter/bartlett-pulse]: create an iterator which generates a Bartlett pulse waveform.
317+
- [`@stdlib/simulate/iter/hann-pulse`][@stdlib/simulate/iter/hann-pulse]: create an iterator which generates a Hann pulse waveform.
318+
- [`@stdlib/simulate/iter/pulse`][@stdlib/simulate/iter/pulse]: create an iterator which generates a pulse waveform.
319+
- [`@stdlib/simulate/iter/triangle-wave`][@stdlib/simulate/iter/triangle-wave]: create an iterator which generates a triangle wave.
320+
321+
</section>
322+
323+
<!-- /.related -->
324+
308325
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
309326

310327

@@ -362,6 +379,18 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
362379

363380
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/simulate-iter-bartlett-hann-pulse/main/LICENSE
364381

382+
<!-- <related-links> -->
383+
384+
[@stdlib/simulate/iter/bartlett-pulse]: https://github.com/stdlib-js/simulate-iter-bartlett-pulse
385+
386+
[@stdlib/simulate/iter/hann-pulse]: https://github.com/stdlib-js/simulate-iter-hann-pulse
387+
388+
[@stdlib/simulate/iter/pulse]: https://github.com/stdlib-js/simulate-iter-pulse
389+
390+
[@stdlib/simulate/iter/triangle-wave]: https://github.com/stdlib-js/simulate-iter-triangle-wave
391+
392+
<!-- </related-links> -->
393+
365394
</section>
366395

367396
<!-- /.links -->

0 commit comments

Comments
 (0)