Skip to content

Commit b6e74b2

Browse files
committed
Auto-generated commit
1 parent 6cf7b64 commit b6e74b2

File tree

40 files changed

+146
-126
lines changed

40 files changed

+146
-126
lines changed

.github/workflows/benchmark.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: benchmark
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
benchmark:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: 15
14+
- name: Install production and development dependencies
15+
run: |
16+
npm install
17+
- name: Run benchmarks
18+
run: |
19+
npm run benchmark

.github/workflows/examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-node@v1
1212
with:
13-
node-version: 14
13+
node-version: 15
1414
- name: Install production and development dependencies
1515
run: |
1616
npm install
1717
- name: Run examples
1818
run: |
19-
npm run examples
19+
npm run examples

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v1
1313
with:
14-
node-version: 14
14+
node-version: 15
1515
- name: Increment version
1616
run: |
1717
git config --local user.email "noreply@stdlib.io"
@@ -31,4 +31,4 @@ jobs:
3131
status: ${{ job.status }}
3232
steps: ${{ toJson(steps) }}
3333
channel: '#npm-ci'
34-
if: failure()
34+
if: failure()

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-node@v1
1414
with:
15-
node-version: 14
15+
node-version: 15
1616
- name: Install production and development dependencies
1717
id: install
1818
run: |
@@ -26,4 +26,4 @@ jobs:
2626
status: ${{ job.status }}
2727
steps: ${{ toJson(steps) }}
2828
channel: '#npm-ci'
29-
if: failure()
29+
if: failure()

.github/workflows/test_coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-node@v1
1212
with:
13-
node-version: 14
13+
node-version: 15
1414
- name: Install production and development dependencies
1515
run: |
1616
npm install
@@ -21,4 +21,4 @@ jobs:
2121
uses: codecov/codecov-action@v1
2222
with:
2323
directory: reports/coverage
24-
flags: unittests
24+
flags: unittests

.github/workflows/test_install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v1
1616
- uses: actions/setup-node@v1
1717
with:
18-
node-version: 14
18+
node-version: 15
1919
- name: Install production dependencies via npm
2020
run: |
2121
npm install --only=prod
@@ -24,4 +24,4 @@ jobs:
2424
status: ${{ job.status }}
2525
steps: ${{ toJson(steps) }}
2626
channel: '#npm-ci'
27-
if: failure()
27+
if: failure()

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Code of Conduct
22

3-
stdlib expects community participants to adhere to the project Code of Conduct. The [full text](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md) is available in the main project repository.
3+
stdlib expects community participants to adhere to the project Code of Conduct. The [full text](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md) is available in the main project repository.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Contribution Guidelines
22

3-
Woot woot! If you are new to stdlib, welcome! And thanks for your interest! Guidelines for how to contribute to the project are [available](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) in the main project repository.
3+
Woot woot! If you are new to stdlib, welcome! And thanks for your interest! Guidelines for how to contribute to the project are [available](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) in the main project repository.

has-arraybuffer-support/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ tape( 'if `ArrayBuffer` is supported, detection result is `true`', function test
6666

6767
mocked = proxyquire( './../lib/main.js', {
6868
'./arraybuffer.js': Mock,
69-
'@stdlib/assert/is-arraybuffer': isBuffer
69+
'./../../is-arraybuffer': isBuffer
7070
});
7171
t.strictEqual( mocked(), true, 'detection result is `true` (mocked)' );
7272

has-dataview-support/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ tape( 'if `DataView` is supported, detection result is `true`', function test( t
5353

5454
mocked = proxyquire( './../lib/main.js', {
5555
'./dataview.js': Mock,
56-
'@stdlib/assert/is-dataview': isDataView
56+
'./../../is-dataview': isDataView
5757
});
5858
t.strictEqual( mocked(), true, 'detection result is `true` (mocked)' );
5959

0 commit comments

Comments
 (0)