Skip to content

chore(deps): bump the patch-and-minor group across 1 directory with 2 updates #53

chore(deps): bump the patch-and-minor group across 1 directory with 2 updates

chore(deps): bump the patch-and-minor group across 1 directory with 2 updates #53

Workflow file for this run

# .github/workflows/lighthouse.yml
name: 'Lighthouse CI'
on:
push:
branches: [main, master] # Run on pushes to main/master
pull_request: # Run on pull requests
jobs:
lighthouse:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repo'
uses: actions/checkout@v4
# --- If you have a build step, add it here ---
- name: 'Use Node.js'
uses: actions/setup-node@v4
with:
node-version: 18 # Specify your node version
- name: 'Install Dependencies'
run: npm install # or 'yarn install'
- name: 'Build Website'
run: npm run build # or your specific build command
# ----------------------------------------------
- name: 'Run Lighthouse CI'
uses: treosh/lighthouse-ci-action@v11
with:
# This action will automatically find your .lighthouserc.json file
# and server-static-site.
uploadArtifacts: true # Save reports as artifacts
temporaryPublicStorage: true # Upload to temp storage for a shareable link