Skip to content

Commit a318439

Browse files
committed
Auto-generated commit
1 parent 3ee9971 commit a318439

3 files changed

Lines changed: 44 additions & 0 deletions

File tree

.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: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,26 @@ while ( true ) {
215215

216216
<!-- /.references -->
217217

218+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
219+
220+
<section class="related">
221+
222+
* * *
223+
224+
## See Also
225+
226+
- [`@stdlib/random/base/minstd`][@stdlib/random/base/minstd]: A linear congruential pseudorandom number generator (LCG) based on Park and Miller.
227+
- [`@stdlib/random/iter/minstd-shuffle`][@stdlib/random/iter/minstd-shuffle]: create an iterator for a linear congruential pseudorandom number generator (LCG) whose output is shuffled.
228+
- [`@stdlib/random/iter/mt19937`][@stdlib/random/iter/mt19937]: create an iterator for a 32-bit Mersenne Twister pseudorandom number generator.
229+
- [`@stdlib/random/iter/randi`][@stdlib/random/iter/randi]: create an iterator for generating pseudorandom numbers having integer values.
230+
- [`@stdlib/random/iter/randu`][@stdlib/random/iter/randu]: create an iterator for generating uniformly distributed pseudorandom numbers between 0 and 1.
231+
232+
</section>
233+
234+
<!-- /.related -->
235+
236+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
237+
218238

219239
<section class="main-repo" >
220240

@@ -276,6 +296,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
276296

277297
[@stdlib/array/int32]: https://github.com/stdlib-js/array-int32
278298

299+
<!-- <related-links> -->
300+
301+
[@stdlib/random/base/minstd]: https://github.com/stdlib-js/random-base-minstd
302+
303+
[@stdlib/random/iter/minstd-shuffle]: https://github.com/stdlib-js/random-iter-minstd-shuffle
304+
305+
[@stdlib/random/iter/mt19937]: https://github.com/stdlib-js/random-iter-mt19937
306+
307+
[@stdlib/random/iter/randi]: https://github.com/stdlib-js/random-iter-randi
308+
309+
[@stdlib/random/iter/randu]: https://github.com/stdlib-js/random-iter-randu
310+
311+
<!-- </related-links> -->
312+
279313
</section>
280314

281315
<!-- /.links -->

0 commit comments

Comments
 (0)