Benchmark Tests #12
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 Tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 10 * * 1' | |
env: | |
# Enable versioned runner quiet mode to make CI output easier to read: | |
OUTPUT_MODE: quiet | |
jobs: | |
benchmarks: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18.x, 20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: npm install | |
- name: Run Benchmark Tests | |
run: node ./bin/run-bench.js --filename=${{ github.base_ref || 'main' }}_${{ matrix.node-version }} | |
- name: Verify Benchmark Output | |
run: ls benchmark_results | |
- name: Archive Benchmark Test | |
uses: actions/upload-artifact@v4 | |
with: | |
name: benchmark-tests-${{ github.base_ref || 'main' }}-${{ matrix.node-version }} | |
path: ./benchmark_results | |