Skip to content

Commit a954a4b

Browse files
committed
Auto-generated commit
1 parent 5adf68e commit a954a4b

18 files changed

+1221
-636
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022-03-16T08:56:36.208Z
1+
2022-06-30T23:01:38.223Z

.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@v2
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

.github/workflows/bundle.yml

Lines changed: 0 additions & 256 deletions
This file was deleted.

.github/workflows/cancel.yml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,34 @@
1717
#/
1818

1919
# Workflow name:
20-
name: Cancel Workflow Runs
20+
name: cancel
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 cancel existing workflow runs:
2831
cancel:
29-
runs-on: ubuntu-latest
32+
33+
# Define a display name:
34+
name: 'Cancel workflow runs'
35+
36+
# Define the type of virtual host machine:
37+
runs-on: 'ubuntu-latest'
38+
39+
# Time limit:
3040
timeout-minutes: 3
41+
42+
# Define the sequence of job steps...
3143
steps:
32-
- uses: styfle/cancel-workflow-action@0.9.0
44+
45+
# Cancel existing workflow runs:
46+
- name: 'Cancel existing workflow runs'
47+
uses: styfle/cancel-workflow-action@0.9.0
3348
with:
3449
workflow_id: >-
3550
benchmark.yml,

.github/workflows/close_pull_requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#/
1818

1919
# Workflow name:
20-
name: Close Pull Requests
20+
name: close_pull_requests
2121

2222
# Workflow triggers:
2323
on:

0 commit comments

Comments
 (0)