File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Expand file tree Collapse file tree 3 files changed +35
-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 @@ -122,6 +122,23 @@ bool = isStringArray( [ 'a', NaN ] );
122
122
123
123
<!-- /.examples -->
124
124
125
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
126
+
127
+ <section class =" related " >
128
+
129
+ * * *
130
+
131
+ ## See Also
132
+
133
+ - [ ` @stdlib/assert/is-array ` ] [ @stdlib/assert/is-array ] : test if a value is an array.
134
+ - [ ` @stdlib/assert/is-string ` ] [ @stdlib/assert/is-string ] : test if a value is a string.
135
+
136
+ </section >
137
+
138
+ <!-- /.related -->
139
+
140
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
141
+
125
142
126
143
<section class =" main-repo " >
127
144
@@ -177,6 +194,14 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
177
194
178
195
[ stdlib-license ] : https://raw.githubusercontent.com/stdlib-js/assert-is-string-array/main/LICENSE
179
196
197
+ <!-- <related-links> -->
198
+
199
+ [ @stdlib/assert/is-array ] : https://github.com/stdlib-js/assert-is-array
200
+
201
+ [ @stdlib/assert/is-string ] : https://github.com/stdlib-js/assert-is-string
202
+
203
+ <!-- </related-links> -->
204
+
180
205
</section >
181
206
182
207
<!-- /.links -->
You can’t perform that action at this time.
0 commit comments