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 May 1, 2022
1 parent 52eb442 commit 7b75efc
Show file tree
Hide file tree
Showing 18 changed files with 943 additions and 426 deletions.
2 changes: 1 addition & 1 deletion .github/.keepalive
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2022-04-01T00:42:05.054Z
2022-05-01T00:43:48.049Z
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@v3
- 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
Loading

0 comments on commit 7b75efc

Please sign in to comment.