Skip to content

Add fastest and slowest to benchmark #45

Add fastest and slowest to benchmark

Add fastest and slowest to benchmark #45

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: ${{ matrix.node-version }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: [6, 8, 10, 11, 12, 13, 14, 15]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm i
- name: Tests
run: npm test