Skip to content

Commit 04d568c

Browse files
committed
Auto-generated commit
1 parent 8176b71 commit 04d568c

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
@@ -119,6 +119,24 @@ bool = isUint32Array( null );
119119

120120
<!-- /.examples -->
121121

122+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
123+
124+
<section class="related">
125+
126+
* * *
127+
128+
## See Also
129+
130+
- [`@stdlib/assert/is-typed-array`][@stdlib/assert/is-typed-array]: test if a value is a typed array.
131+
- [`@stdlib/assert/is-uint16array`][@stdlib/assert/is-uint16array]: test if a value is a Uint16Array.
132+
- [`@stdlib/assert/is-uint8array`][@stdlib/assert/is-uint8array]: test if a value is a Uint8Array.
133+
134+
</section>
135+
136+
<!-- /.related -->
137+
138+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
139+
122140

123141
<section class="main-repo" >
124142

@@ -176,6 +194,16 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
176194

177195
[mdn-uint32array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array
178196

197+
<!-- <related-links> -->
198+
199+
[@stdlib/assert/is-typed-array]: https://github.com/stdlib-js/assert-is-typed-array
200+
201+
[@stdlib/assert/is-uint16array]: https://github.com/stdlib-js/assert-is-uint16array
202+
203+
[@stdlib/assert/is-uint8array]: https://github.com/stdlib-js/assert-is-uint8array
204+
205+
<!-- </related-links> -->
206+
179207
</section>
180208

181209
<!-- /.links -->

0 commit comments

Comments
 (0)