8000 Auto-generated commit · stdlib-js/utils-async-count-by@cbaa2b8 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cbaa2b8

Browse files
committed
Auto-generated commit
1 parent 43d4dd4 commit cbaa2b8

18 files changed

+943
-426
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022-04-01T01:32:50.238Z
1+
2022-05-01T01:14:58.834Z

.github/workflows/benchmark.yml

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,42 @@ name: benchmark
2121

2222
# Workflow triggers:
2323
on:
24+
# Allow the workflow to be manually run:
2425
workflow_dispatch:
2526

2627
# Workflow jobs:
2728
jobs:
29+
30+
# Define a job to run benchmarks:
2831
benchmark:
29-
runs-on: ubuntu-latest
32+
33+
# Define a display name:
34+
name: 'Run benchmarks'
35+
36+
# Define the type of virtual host machine:
37+
runs-on: 'ubuntu-latest'
38+
39+
# Define the sequence of job steps...
3040
steps:
31-
- uses: actions/checkout@v3
32-
- uses: actions/setup-node@v2
41+
42+
# Checkout the repository:
43+
- name: 'Checkout repository'
44+
uses: actions/checkout@v3
45+
46+
# Install Node.js:
47+
- name: 'Install Node.js'
48+
uses: actions/setup-node@v2
3349
with:
3450
node-version: 16
3551
timeout-minutes: 5
36-
- name: Install production and development dependencies
52+
53+
# Install dependencies:
54+
- name: 'Install production and development dependencies'
3755
run: |
3856
npm install || npm install || npm install
3957
timeout-minutes: 15
40-
- name: Run benchmarks
58+
59+
# Run benchmarks:
60+
- name: 'Run benchmarks'
4161
run: |
4262
npm run benchmark

0 commit comments

Comments
 (0)
0