From 04d568c5237637872c306bf9fe9e7b4d95f583f2 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Mon, 6 Sep 2021 20:46:30 +0000 Subject: [PATCH] Auto-generated commit --- .github/workflows/test.yml | 5 +++++ .github/workflows/test_coverage.yml | 5 +++++ README.md | 28 ++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d3cfc5..cd15304 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: | diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index ae56523..f5697d4 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -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 diff --git a/README.md b/README.md index 8cdf61b..bb7a996 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,24 @@ bool = isUint32Array( null ); + + + + + + + +
@@ -176,6 +194,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors]. [mdn-uint32array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array + + +[@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 + + +