summaryrefslogtreecommitdiff
path: root/.github/workflows/continuous_benchmark.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/continuous_benchmark.yml50
1 files changed, 50 insertions, 0 deletions
diff --git a/.github/workflows/continuous_benchmark.yml b/.github/workflows/continuous_benchmark.yml
new file mode 100644
index 000000000..42aaf7fc6
--- /dev/null
+++ b/.github/workflows/continuous_benchmark.yml
@@ -0,0 +1,50 @@
+name: Continuous benchmark
+
+on:
+ workflow_dispatch:
+ pull_request:
+ branches:
+ - main
+ push:
+ branches:
+ - main
+
+env:
+ TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
+ TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
+ FORCE_COLOR: true
+ CODSPEED_TOKEN: ${{ secrets.CODSPEED_TOKEN }}
+ CODSPEED: true
+
+jobs:
+ codspeed:
+ if: ${{ github.repository_owner == 'withastro' }}
+ 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:
+ node-version: 18
+ cache: "pnpm"
+
+ - name: Install dependencies
+ run: pnpm install
+
+ - name: Build
+ run: pnpm run build
+
+ - name: Run the benchmarks
+ uses: CodSpeedHQ/action@b587655f756aab640e742fec141261bc6f0a569d # v3.0.1
+ timeout-minutes: 30
+ with:
+ run: pnpm benchmark codspeed
+