Skip to content

chore(deps): bump astro from 7.0.6 to 7.1.3 #65

chore(deps): bump astro from 7.0.6 to 7.1.3

chore(deps): bump astro from 7.0.6 to 7.1.3 #65

Workflow file for this run

name: Lighthouse CI
on:
pull_request:
branches: [main]
jobs:
lighthouse:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Run Lighthouse CI
run: |
npm install -g @lhci/cli@0.13.x
lhci autorun --config=./.lighthouserc.cjs
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}