diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index b4d9fe3b..fccb4c25 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -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 diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index b55932ff..be2d8129 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -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 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4f9ca330..bcf6ed81 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f7671a6..3d3cfc5b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: | diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index f05cc063..ae56523c 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -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 diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 6fefa976..0bb1900d 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -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 }} diff --git a/package.json b/package.json index 0fd47fb1..f73dc381 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stdlib/ndarray", - "version": "0.0.12", + "version": "0.0.13", "description": "Multidimensional arrays.", "license": "Apache-2.0", "author": { @@ -36,17 +36,17 @@ "url": "https://github.com/stdlib-js/stdlib/issues" }, "dependencies": { - "@stdlib/array": "github:stdlib-js/array", - "@stdlib/assert": "github:stdlib-js/assert", - "@stdlib/bigint": "github:stdlib-js/bigint", - "@stdlib/buffer": "github:stdlib-js/buffer", - "@stdlib/complex": "github:stdlib-js/complex", - "@stdlib/constants": "github:stdlib-js/constants", - "@stdlib/math": "github:stdlib-js/math", - "@stdlib/number": "github:stdlib-js/number", - "@stdlib/string": "github:stdlib-js/string", - "@stdlib/types": "github:stdlib-js/types", - "@stdlib/utils": "github:stdlib-js/utils" + "@stdlib/array": "github:stdlib-js/array#main", + "@stdlib/assert": "github:stdlib-js/assert#main", + "@stdlib/bigint": "github:stdlib-js/bigint#main", + "@stdlib/buffer": "github:stdlib-js/buffer#main", + "@stdlib/complex": "github:stdlib-js/complex#main", + "@stdlib/constants": "github:stdlib-js/constants#main", + "@stdlib/math": "github:stdlib-js/math#main", + "@stdlib/number": "github:stdlib-js/number#main", + "@stdlib/string": "github:stdlib-js/string#main", + "@stdlib/types": "github:stdlib-js/types#main", + "@stdlib/utils": "github:stdlib-js/utils#main" }, "devDependencies": { "@stdlib/bench": "github:stdlib-js/bench",