Skip to content

Commit 4f61c02

Browse files
committed
Auto-generated commit
1 parent 373d7de commit 4f61c02

3 files changed

Lines changed: 35 additions & 0 deletions

File tree

.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
@@ -139,6 +139,23 @@ bool = isSameValue( isSameValue, isSameValue );
139139

140140
<!-- /.examples -->
141141

142+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
143+
144+
<section class="related">
145+
146+
* * *
147+
148+
## See Also
149+
150+
- [`@stdlib/assert/is-same-value-zero`][@stdlib/assert/is-same-value-zero]: test if two arguments are the same value.
151+
- [`@stdlib/assert/is-strict-equal`][@stdlib/assert/is-strict-equal]: test if two arguments are strictly equal.
152+
153+
</section>
154+
155+
<!-- /.related -->
156+
157+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
158+
142159

143160
<section class="main-repo" >
144161

@@ -196,6 +213,14 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
196213

197214
[ecma-262-same-value-algorithm]: http://ecma-international.org/ecma-262/5.1/#sec-9.12
198215

216+
<!-- <related-links> -->
217+
218+
[@stdlib/assert/is-same-value-zero]: https://github.com/stdlib-js/assert-is-same-value-zero
219+
220+
[@stdlib/assert/is-strict-equal]: https://github.com/stdlib-js/assert-is-strict-equal
221+
222+
<!-- </related-links> -->
223+
199224
</section>
200225

201226
<!-- /.links -->

0 commit comments

Comments
 (0)