Skip to content

Benchmark

Benchmark #1150

Workflow file for this run

name: Benchmark
on: deployment_status
jobs:
lighthouse:
# only runs this job on successful deploy
if: github.event.deployment_status.state == 'success'
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Lighthouse Check
run: npx @lhci/cli autorun
env:
PREVIEW_URL: ${{ github.event.deployment_status.target_url }}
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}