Skip to content

Fix: Update npm lock file for Next.js 15 downgrade #53

Fix: Update npm lock file for Next.js 15 downgrade

Fix: Update npm lock file for Next.js 15 downgrade #53

Workflow file for this run

name: Lighthouse CI
on:
pull_request:
paths:
- "site/**"
- ".github/workflows/lighthouse.yml"
push:
branches: ["main"]
paths:
- "site/**"
jobs:
lighthouse:
runs-on: ubuntu-latest
defaults:
run:
working-directory: site
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "20"
cache: "npm"
cache-dependency-path: site/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
- name: Run Lighthouse CI
uses: treosh/lighthouse-ci-action@v12
continue-on-error: true
with:
configPath: site/.lighthouserc.json
uploadArtifacts: true
temporaryPublicStorage: true