Skip to content

Commit 21747fb

Browse files
committed
Auto-generated commit
1 parent 4f41938 commit 21747fb

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-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: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,23 @@ bool = isSafeInteger( null );
176176

177177
<!-- /.examples -->
178178

179+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
180+
181+
<section class="related">
182+
183+
* * *
184+
185+
## See Also
186+
187+
- [`@stdlib/assert/is-integer`][@stdlib/assert/is-integer]: test if a value is a number having an integer value.
188+
- [`@stdlib/assert/is-number`][@stdlib/assert/is-number]: test if a value is a number.
189+
190+
</section>
191+
192+
<!-- /.related -->
193+
194+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
195+
179196

180197
<section class="main-repo" >
181198

@@ -233,6 +250,14 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
233250

234251
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
235252

253+
<!-- <related-links> -->
254+
255+
[@stdlib/assert/is-integer]: https://github.com/stdlib-js/assert-is-integer
256+
257+
[@stdlib/assert/is-number]: https://github.com/stdlib-js/assert-is-number
258+
259+
<!-- </related-links> -->
260+
236261
</section>
237262

238263
<!-- /.links -->

0 commit comments

Comments
 (0)