Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 6, 2021
1 parent 8176b71 commit 04d568c
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Build native add-on (if present)
run: |
if [ -f "binding.gyp" ]; then
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
fi
- name: Run tests
id: tests
run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Build native add-on (if present)
run: |
if [ -f "binding.gyp" ]; then
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
fi
- name: Calculate test coverage
run: |
npm run test-cov || npm run test-cov || npm run test-cov
Expand Down
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,24 @@ bool = isUint32Array( null );

<!-- /.examples -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

* * *

## See Also

- [`@stdlib/assert/is-typed-array`][@stdlib/assert/is-typed-array]: test if a value is a typed array.
- [`@stdlib/assert/is-uint16array`][@stdlib/assert/is-uint16array]: test if a value is a Uint16Array.
- [`@stdlib/assert/is-uint8array`][@stdlib/assert/is-uint8array]: test if a value is a Uint8Array.

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->


<section class="main-repo" >

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

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

<!-- <related-links> -->

[@stdlib/assert/is-typed-array]: https://github.com/stdlib-js/assert-is-typed-array

[@stdlib/assert/is-uint16array]: https://github.com/stdlib-js/assert-is-uint16array

[@stdlib/assert/is-uint8array]: https://github.com/stdlib-js/assert-is-uint8array

<!-- </related-links> -->

</section>

<!-- /.links -->

0 comments on commit 04d568c

Please sign in to comment.