Skip to content

Commit 0dbb939

Browse files
committed
Auto-generated commit
1 parent 4364802 commit 0dbb939

File tree

7 files changed

+31
-11
lines changed

7 files changed

+31
-11
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()

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"scripts": {
3030
"test": "make test",
3131
"test-cov": "make test-cov",
32-
"examples": "make examples"
32+
"examples": "make examples",
33+
"benchmark": "make benchmark"
3334
},
3435
"homepage": "https://github.com/stdlib-js/stdlib",
3536
"repository": {

0 commit comments

Comments
 (0)