Skip to content

Commit b78f8db

Browse files
committed
Auto-generated commit
1 parent d9d2f4c commit b78f8db

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
@@ -123,6 +123,23 @@ bool = isArrayBuffer( null );
123123

124124
<!-- /.examples -->
125125

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

127144
<section class="main-repo" >
128145

@@ -180,6 +197,14 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
180197

181198
[mdn-arraybuffer]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
182199

200+
<!-- <related-links> -->
201+
202+
[@stdlib/assert/is-sharedarraybuffer]: https://github.com/stdlib-js/assert-is-sharedarraybuffer
203+
204+
[@stdlib/assert/is-typed-array]: https://github.com/stdlib-js/assert-is-typed-array
205+
206+
<!-- </related-links> -->
207+
183208
</section>
184209

185210
<!-- /.links -->

0 commit comments

Comments
 (0)