File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 44
44
run : |
45
45
npm install || npm install || npm install
46
46
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
47
52
- name : Run tests
48
53
id : tests
49
54
run : |
Original file line number Diff line number Diff line change 40
40
run : |
41
41
npm install || npm install || npm install
42
42
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
43
48
- name : Calculate test coverage
44
49
run : |
45
50
npm run test-cov || npm run test-cov || npm run test-cov
Original file line number Diff line number Diff line change @@ -119,6 +119,24 @@ bool = isUint32Array( null );
119
119
120
120
<!-- /.examples -->
121
121
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
+
122
140
123
141
<section class =" main-repo " >
124
142
@@ -176,6 +194,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
176
194
177
195
[ mdn-uint32array ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array
178
196
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
+
179
207
</section >
180
208
181
209
<!-- /.links -->
You can’t perform that action at this time.
0 commit comments