Skip to content

Bump the npm_and_yarn group across 1 directory with 2 updates #88

Bump the npm_and_yarn group across 1 directory with 2 updates

Bump the npm_and_yarn group across 1 directory with 2 updates #88

Workflow file for this run

name: Benchmarks
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: bench-${{ github.ref }}
cancel-in-progress: true
jobs:
benchmark-pr:
name: Run benchmarks (PR)
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-node
- uses: ./.github/actions/run-benchmarks
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: false
comment-on-alert: true
benchmark-main:
name: Run benchmarks (main)
if: github.event_name == 'push'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-node
- uses: ./.github/actions/run-benchmarks
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true