Skip to content

Merge branch 'main' into dependabot/npm_and_yarn/stylistic/eslint-plu… #89

Merge branch 'main' into dependabot/npm_and_yarn/stylistic/eslint-plu…

Merge branch 'main' into dependabot/npm_and_yarn/stylistic/eslint-plu… #89

Workflow file for this run

name: Lighthouse Audit
on: [push]
jobs:
lhci:
name: Lighthouse
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- 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
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}