Skip to content

Commit 42a428a

Browse files
committed
Auto-generated commit
1 parent 9ef9cf1 commit 42a428a

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-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: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,23 @@ bool = isNativeFunction( function noop() {} );
102102

103103
<!-- /.examples -->
104104

105+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
106+
107+
<section class="related">
108+
109+
* * *
110+
111+
## See Also
112+
113+
- [`@stdlib/regexp/function-name`][@stdlib/regexp/function-name]: return a regular expression to capture a function name.
114+
- [`@stdlib/utils/function-name`][@stdlib/utils/function-name]: determine a function's name.
115+
116+
</section>
117+
118+
<!-- /.related -->
119+
120+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
121+
105122

106123
<section class="main-repo" >
107124

@@ -159,6 +176,14 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
159176

160177
[regexp]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
161178

179+
<!-- <related-links> -->
180+
181+
[@stdlib/regexp/function-name]: https://github.com/stdlib-js/regexp-function-name
182+
183+
[@stdlib/utils/function-name]: https://github.com/stdlib-js/utils-function-name
184+
185+
<!-- </related-links> -->
186+
162187
</section>
163188

164189
<!-- /.links -->

0 commit comments

Comments
 (0)