Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jun 30, 2022
1 parent 742a5e3 commit bee5243
Show file tree
Hide file tree
Showing 19 changed files with 1,223 additions and 637 deletions.
1 change: 1 addition & 0 deletions .github/.keepalive
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2022-06-30T22:59:31.747Z
30 changes: 25 additions & 5 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,42 @@ name: benchmark

# Workflow triggers:
on:
# Allow the workflow to be manually run:
workflow_dispatch:

# Workflow jobs:
jobs:

# Define a job to run benchmarks:
benchmark:
runs-on: ubuntu-latest

# Define a display name:
name: 'Run benchmarks'

# Define the type of virtual host machine:
runs-on: 'ubuntu-latest'

# Define the sequence of job steps...
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2

# Checkout the repository:
- name: 'Checkout repository'
uses: actions/checkout@v3

# Install Node.js:
- name: 'Install Node.js'
uses: actions/setup-node@v2
with:
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies

# Install dependencies:
- name: 'Install production and development dependencies'
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run benchmarks

# Run benchmarks:
- name: 'Run benchmarks'
run: |
npm run benchmark
256 changes: 0 additions & 256 deletions .github/workflows/bundle.yml

This file was deleted.

21 changes: 18 additions & 3 deletions .github/workflows/cancel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,34 @@
#/

# Workflow name:
name: Cancel Workflow Runs
name: cancel

# Workflow triggers:
on:
# Allow the workflow to be manually run:
workflow_dispatch:

# Workflow jobs:
jobs:

# Define a job to cancel existing workflow runs:
cancel:
runs-on: ubuntu-latest

# Define a display name:
name: 'Cancel workflow runs'

# Define the type of virtual host machine:
runs-on: 'ubuntu-latest'

# Time limit:
timeout-minutes: 3

# Define the sequence of job steps...
steps:
- uses: styfle/[email protected]

# Cancel existing workflow runs:
- name: 'Cancel existing workflow runs'
uses: styfle/[email protected]
with:
workflow_id: >-
benchmark.yml,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#/

# Workflow name:
name: Close Pull Requests
name: close_pull_requests

# Workflow triggers:
on:
Expand Down
Loading

0 comments on commit bee5243

Please sign in to comment.