2024-11-06 07:33:14 -05:00
|
|
|
name: Continuous benchmark
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-11-18 06:33:58 -05:00
|
|
|
paths:
|
|
|
|
- 'packages/astro/src/**/*.ts'
|
|
|
|
- 'benchmark/**'
|
2024-11-06 07:33:14 -05:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-11-18 06:33:58 -05:00
|
|
|
paths:
|
|
|
|
- 'packages/astro/src/**/*.ts'
|
|
|
|
- 'benchmark/**'
|
2024-11-06 07:33:14 -05:00
|
|
|
|
|
|
|
env:
|
|
|
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
|
|
|
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
|
|
|
FORCE_COLOR: true
|
|
|
|
CODSPEED: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
codspeed:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Setup PNPM
|
|
|
|
uses: pnpm/action-setup@v3
|
|
|
|
|
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
2024-11-27 10:59:58 -05:00
|
|
|
node-version: 22
|
2024-11-06 07:33:14 -05:00
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: pnpm run build
|
|
|
|
|
|
|
|
- name: Run the benchmarks
|
2024-11-27 03:20:16 -05:00
|
|
|
uses: CodSpeedHQ/action@513a19673a831f139e8717bf45ead67e47f00044 # v3.2.0
|
2024-11-06 07:33:14 -05:00
|
|
|
timeout-minutes: 30
|
|
|
|
with:
|
2024-12-03 12:03:24 -05:00
|
|
|
working-directory: ./benchmark
|
|
|
|
run: pnpm bench
|
2024-11-18 06:33:58 -05:00
|
|
|
token: ${{ secrets.CODSPEED_TOKEN }}
|
2024-11-06 07:33:14 -05:00
|
|
|
|