Skip to content

Commit

Permalink
Release v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 22, 2021
1 parent b5f6f64 commit a39816a
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/benchmark.yml
Expand Up @@ -31,10 +31,12 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run benchmarks
run: |
npm run benchmark
4 changes: 3 additions & 1 deletion .github/workflows/examples.yml
Expand Up @@ -31,10 +31,12 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run examples
run: |
npm run examples
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Expand Up @@ -34,7 +34,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
node-version: 16
timeout-minutes: 5
- name: Replace all GitHub links to individual packages with npm links
run: |
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei 's/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -37,11 +37,13 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies
id: install
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run tests
id: tests
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test_coverage.yml
Expand Up @@ -34,13 +34,16 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Calculate test coverage
run: |
npm run test-cov || npm run test-cov || npm run test-cov
timeout-minutes: 15
- name: Upload coverage to Codecov
id: upload
uses: codecov/codecov-action@v1
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test_install.yml
Expand Up @@ -39,10 +39,12 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
node-version: 16
timeout-minutes: 5
- name: Install production dependencies via npm
run: |
npm install --only=prod || npm install --only=prod || npm install --only=prod
timeout-minutes: 15
- uses: act10ns/slack@v1
with:
status: ${{ job.status }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@stdlib/stats-base-dnanmin",
"version": "0.0.6",
"version": "0.0.7",
"description": "Calculate the minimum value of a double-precision floating-point strided array, ignoring NaN values.",
"license": "Apache-2.0",
"author": {
Expand All @@ -15,7 +15,7 @@
],
"main": "./lib",
"browser": "./lib/main.js",
"gypfile": true,
"gypfile": false,
"directories": {
"benchmark": "./benchmark",
"doc": "./docs",
Expand Down

0 comments on commit a39816a

Please sign in to comment.