Skip to content

Commit

Permalink
Release v0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 22, 2021
1 parent 4626f73 commit 50c85b1
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 22 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- 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
6 changes: 4 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- 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
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- 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
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,15 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- 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
7 changes: 5 additions & 2 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- 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
8 changes: 5 additions & 3 deletions .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,15 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- 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
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/array",
"version": "0.0.11",
"version": "0.0.12",
"description": "Arrays.",
"license": "Apache-2.0",
"author": {
Expand Down Expand Up @@ -36,14 +36,14 @@
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
"@stdlib/assert": "github:stdlib-js/assert",
"@stdlib/blas": "github:stdlib-js/blas",
"@stdlib/complex": "github:stdlib-js/complex",
"@stdlib/constants": "github:stdlib-js/constants",
"@stdlib/math": "github:stdlib-js/math",
"@stdlib/symbol": "github:stdlib-js/symbol",
"@stdlib/types": "github:stdlib-js/types",
"@stdlib/utils": "github:stdlib-js/utils"
"@stdlib/assert": "github:stdlib-js/assert#main",
"@stdlib/blas": "github:stdlib-js/blas#main",
"@stdlib/complex": "github:stdlib-js/complex#main",
"@stdlib/constants": "github:stdlib-js/constants#main",
"@stdlib/math": "github:stdlib-js/math#main",
"@stdlib/symbol": "github:stdlib-js/symbol#main",
"@stdlib/types": "github:stdlib-js/types#main",
"@stdlib/utils": "github:stdlib-js/utils#main"
},
"devDependencies": {
"@stdlib/bench": "github:stdlib-js/bench",
Expand Down

0 comments on commit 50c85b1

Please sign in to comment.