Skip to content

Commit df476f5

Browse files
committed
Auto-generated commit
1 parent 6f80b25 commit df476f5

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,24 @@ bool = isPositiveNumberArray( 78.0 );
129129

130130
<!-- /.examples -->
131131

132+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
133+
134+
<section class="related">
135+
136+
* * *
137+
138+
## See Also
139+
140+
- [`@stdlib/assert/is-array`][@stdlib/assert/is-array]: test if a value is an array.
141+
- [`@stdlib/assert/is-number`][@stdlib/assert/is-number]: test if a value is a number.
142+
- [`@stdlib/assert/is-positive-number`][@stdlib/assert/is-positive-number]: test if a value is a number having a positive value.
143+
144+
</section>
145+
146+
<!-- /.related -->
147+
148+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
149+
132150

133151
<section class="main-repo" >
134152

@@ -184,6 +202,16 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
184202

185203
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-positive-number-array/main/LICENSE
186204

205+
<!-- <related-links> -->
206+
207+
[@stdlib/assert/is-array]: https://github.com/stdlib-js/assert-is-array
208+
209+
[@stdlib/assert/is-number]: https://github.com/stdlib-js/assert-is-number
210+
211+
[@stdlib/assert/is-positive-number]: https://github.com/stdlib-js/assert-is-positive-number
212+
213+
<!-- </related-links> -->
214+
187215
</section>
188216

189217
<!-- /.links -->

0 commit comments

Comments
 (0)