Skip to content

Commit c74b35b

Browse files
committed
Auto-generated commit
1 parent 38a8415 commit c74b35b

9 files changed

+33
-13
lines changed

.github/workflows/benchmark.yml

+19
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

+2-2
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

+2-2
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 "[email protected]"
@@ -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

+2-2
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

+2-2
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

+2-2
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

+1-1
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

+1-1
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.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"scripts": {
2424
"test": "make test",
2525
"test-cov": "make test-cov",
26-
"examples": "make examples"
26+
"examples": "make examples",
27+
"benchmark": "make benchmark"
2728
},
2829
"homepage": "https://github.com/stdlib-js/stdlib",
2930
"repository": {

0 commit comments

Comments
 (0)