Skip to content

chore: Add Lighthouse configuration for CI integration #7

chore: Add Lighthouse configuration for CI integration

chore: Add Lighthouse configuration for CI integration #7

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install, build, and upload site
uses: withastro/action@v3
with:
node-version: 20 # Optional: specify Node.js version for consistency
package-manager: npm # Adjust if using `pnpm`
lighthouse:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Lighthouse CI globally
run: npm install -g @lhci/[email protected]
- name: Run Lighthouse CI
run: lhci autorun
deploy:
needs: [build, lighthouse]
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4