File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Expand file tree Collapse file tree 3 files changed +32
-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 @@ -74,6 +74,22 @@ console.log( SQRT2 );
74
74
75
75
<!-- /.examples -->
76
76
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
+
77
93
78
94
<section class =" main-repo " >
79
95
@@ -131,6 +147,12 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
131
147
132
148
[ @stdlib/math/base/special/sqrt ] : https://github.com/stdlib-js/math-base-special-sqrt
133
149
150
+ <!-- <related-links> -->
151
+
152
+ [ @stdlib/constants/float64/ln-two ] : https://github.com/stdlib-js/constants-float64-ln-two
153
+
154
+ <!-- </related-links> -->
155
+
134
156
</section >
135
157
136
158
<!-- /.links -->
You can’t perform that action at this time.
0 commit comments