Add failing tests for incorrect handling of single quotes w/ brace expansion #372
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark | |
on: | |
push: | |
branches: ['master', 'releases/*'] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
product: | |
name: Product benchmark | |
concurrency: | |
group: ${{ github.workflow }}-benchmark-product-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repository | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: node --run build | |
- name: Benchmark (async) | |
run: node --run bench:product:async | |
- name: Benchmark (stream) | |
run: node --run bench:product:stream | |
- name: Benchmark (sync) | |
run: node --run bench:product:sync | |
regress: | |
name: Regress benchmark with options (${{ matrix.benchmark_options }}) | |
concurrency: | |
group: ${{ github.workflow }}-benchmark-regress-${{ matrix.benchmark_options }}-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
benchmark_options: | |
- '{}' | |
- '{ "objectMode": true }' | |
- '{ "absolute": true }' | |
env: | |
BENCHMARK_OPTIONS: ${{ matrix.benchmark_options }} | |
steps: | |
- name: Setup repository | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: node --run build | |
- name: Benchmark (async) | |
run: node --run bench:regression:async | |
- name: Benchmark (stream) | |
run: node --run bench:regression:stream | |
- name: Benchmark (sync) | |
run: node --run bench:regression:sync | |
overhead: | |
name: Overhead benchmark | |
concurrency: | |
group: ${{ github.workflow }}-benchmark-overhead-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repository | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: node --run build | |
- name: Benchmark (async) | |
run: node --run bench:overhead:async | |
- name: Benchmark (stream) | |
run: node --run bench:overhead:stream | |
- name: Benchmark (sync) | |
run: node --run bench:overhead:sync |