Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 6, 2021
1 parent 0a4d999 commit 3f49b7e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Build native add-on (if present)
run: |
if [ -f "binding.gyp" ]; then
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
fi
- name: Run tests
id: tests
run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Build native add-on (if present)
run: |
if [ -f "binding.gyp" ]; then
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
fi
- name: Calculate test coverage
run: |
npm run test-cov || npm run test-cov || npm run test-cov
Expand Down
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,22 @@ console.log( INT16_MAX );

<!-- /.examples -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

* * *

## See Also

- [`@stdlib/constants/int16/min`][@stdlib/constants/int16/min]: minimum signed 16-bit integer.

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->


<section class="main-repo" >

Expand Down Expand Up @@ -129,6 +145,12 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].

[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/constants-int16-max/main/LICENSE

<!-- <related-links> -->

[@stdlib/constants/int16/min]: https://github.com/stdlib-js/constants-int16-min

<!-- </related-links> -->

</section>

<!-- /.links -->

0 comments on commit 3f49b7e

Please sign in to comment.