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 Apr 20, 2022
1 parent 55db274 commit a32b9d9
Show file tree
Hide file tree
Showing 19 changed files with 943 additions and 427 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

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 a32b9d9

Please sign in to comment.