File tree Expand file tree Collapse file tree 7 files changed +26
-14
lines changed Expand file tree Collapse file tree 7 files changed +26
-14
lines changed Original file line number Diff line number Diff line change @@ -29,12 +29,14 @@ jobs:
29
29
runs-on : ubuntu-latest
30
30
steps :
31
31
- uses : actions/checkout@v2
32
- - uses : actions/setup-node@v1
32
+ - uses : actions/setup-node@v2
33
33
with :
34
- node-version : 15
34
+ node-version : 16
35
+ timeout-minutes : 5
35
36
- name : Install production and development dependencies
36
37
run : |
37
38
npm install || npm install || npm install
39
+ timeout-minutes : 15
38
40
- name : Run benchmarks
39
41
run : |
40
42
npm run benchmark
Original file line number Diff line number Diff line change @@ -29,12 +29,14 @@ jobs:
29
29
runs-on : ubuntu-latest
30
30
steps :
31
31
- uses : actions/checkout@v2
32
- - uses : actions/setup-node@v1
32
+ - uses : actions/setup-node@v2
33
33
with :
34
- node-version : 15
34
+ node-version : 16
35
+ timeout-minutes : 5
35
36
- name : Install production and development dependencies
36
37
run : |
37
38
npm install || npm install || npm install
39
+ timeout-minutes : 15
38
40
- name : Run examples
39
41
run : |
40
42
npm run examples
Original file line number Diff line number Diff line change 32
32
SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
33
33
steps :
34
34
- uses : actions/checkout@v2
35
- - uses : actions/setup-node@v1
35
+ - uses : actions/setup-node@v2
36
36
with :
37
- node-version : 15
37
+ node-version : 16
38
+ timeout-minutes : 5
38
39
- name : Replace all GitHub links to individual packages with npm links
39
40
run : |
40
41
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'
Original file line number Diff line number Diff line change @@ -35,13 +35,15 @@ jobs:
35
35
SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
36
36
steps :
37
37
- uses : actions/checkout@v2
38
- - uses : actions/setup-node@v1
38
+ - uses : actions/setup-node@v2
39
39
with :
40
- node-version : 15
40
+ node-version : 16
41
+ timeout-minutes : 5
41
42
- name : Install production and development dependencies
42
43
id : install
43
44
run : |
44
45
npm install || npm install || npm install
46
+ timeout-minutes : 15
45
47
- name : Run tests
46
48
id : tests
47
49
run : |
Original file line number Diff line number Diff line change @@ -32,15 +32,18 @@ jobs:
32
32
runs-on : ubuntu-latest
33
33
steps :
34
34
- uses : actions/checkout@v2
35
- - uses : actions/setup-node@v1
35
+ - uses : actions/setup-node@v2
36
36
with :
37
- node-version : 15
37
+ node-version : 16
38
+ timeout-minutes : 5
38
39
- name : Install production and development dependencies
39
40
run : |
40
41
npm install || npm install || npm install
42
+ timeout-minutes : 15
41
43
- name : Calculate test coverage
42
44
run : |
43
45
npm run test-cov || npm run test-cov || npm run test-cov
46
+ timeout-minutes : 15
44
47
- name : Upload coverage to Codecov
45
48
id : upload
46
49
uses : codecov/codecov-action@v1
Original file line number Diff line number Diff line change @@ -36,13 +36,15 @@ jobs:
36
36
SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
37
37
if : ${{ github.event.workflow_run.conclusion == 'success' }}
38
38
steps :
39
- - uses : actions/checkout@v1
40
- - uses : actions/setup-node@v1
39
+ - uses : actions/checkout@v2
40
+ - uses : actions/setup-node@v2
41
41
with :
42
- node-version : 15
42
+ node-version : 16
43
+ timeout-minutes : 5
43
44
- name : Install production dependencies via npm
44
45
run : |
45
46
npm install --only=prod || npm install --only=prod || npm install --only=prod
47
+ timeout-minutes : 15
46
48
- uses : act10ns/slack@v1
47
49
with :
48
50
status : ${{ job.status }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @stdlib/simulate-iter-bartlett-hann-pulse" ,
3
- "version" : " 0.0.4 " ,
3
+ "version" : " 0.0.5 " ,
4
4
"description" : " Create an iterator which generates a Bartlett-Hann pulse waveform." ,
5
5
"license" : " Apache-2.0" ,
6
6
"author" : {
You can’t perform that action at this time.
0 commit comments