Skip to content

ci: wtf lighthouse why do you recommend everything be a pwa #8

ci: wtf lighthouse why do you recommend everything be a pwa

ci: wtf lighthouse why do you recommend everything be a pwa #8

Workflow file for this run

name: CI
on: [push]
jobs:
lighthouseci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"
- name: Install and Build
run: |
pnpm install
pnpm run build
- name: Run Lighthouse CI
run: |
pnpm install -g @lhci/cli@0.12.x
lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}