Skip to content

chore: release v1.1.2 #216

chore: release v1.1.2

chore: release v1.1.2 #216

Workflow file for this run

name: Benchmark
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
paths:
- "**/*.rs"
- "Cargo.lock"
- ".github/workflows/benchmark.yml"
push:
branches:
- main
paths:
- "**/*.rs"
- "Cargo.lock"
- ".github/workflows/benchmark.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
benchmark:
name: Benchmark
runs-on: ubuntu-latest
steps:
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
with:
cache-key: benchmark
save-cache: ${{ github.ref_name == 'main' }}
tools: cargo-codspeed
- name: Build benchmark
run: cargo codspeed build -p oxc-browserslist --features codspeed
- name: Run benchmark
uses: CodSpeedHQ/action@513a19673a831f139e8717bf45ead67e47f00044 # v3
timeout-minutes: 15
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}