Skip to content

Commit 2b0ecad

Browse files
committed
Auto-generated commit
1 parent 6624b3b commit 2b0ecad

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

.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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,22 @@ console.log( SQRT2 );
7474

7575
<!-- /.examples -->
7676

77+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
78+
79+
<section class="related">
80+
81+
* * *
82+
83+
## See Also
84+
85+
- [`@stdlib/constants/float64/ln-two`][@stdlib/constants/float64/ln-two]: natural logarithm of 2.
86+
87+
</section>
88+
89+
<!-- /.related -->
90+
91+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
92+
7793

7894
<section class="main-repo" >
7995

@@ -131,6 +147,12 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
131147

132148
[@stdlib/math/base/special/sqrt]: https://github.com/stdlib-js/math-base-special-sqrt
133149

150+
<!-- <related-links> -->
151+
152+
[@stdlib/constants/float64/ln-two]: https://github.com/stdlib-js/constants-float64-ln-two
153+
154+
<!-- </related-links> -->
155+
134156
</section>
135157

136158
<!-- /.links -->

0 commit comments

Comments
 (0)