Skip to content

lib: do a full warmup run to reduce variance on first benchmark run #27

lib: do a full warmup run to reduce variance on first benchmark run

lib: do a full warmup run to reduce variance on first benchmark run #27

Workflow file for this run

name: Test CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
env:
CI: true
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test