Skip to content

chore: Clean comments and nest test sections in describe blocks #225

chore: Clean comments and nest test sections in describe blocks

chore: Clean comments and nest test sections in describe blocks #225

Workflow file for this run

name: Benchmark
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened, labeled]
workflow_dispatch:
jobs:
bench:
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'run-benchmark'))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 26
cache: 'npm'
- run: npm ci
- name: Run benchmarks
run: npm run bench:json
timeout-minutes: 10
- name: Archive benchmark results
uses: actions/upload-artifact@v4
with:
name: benchmark-results
path: bench/results.json