Skip to content

Testing project with Lighthouse CI #79

Testing project with Lighthouse CI

Testing project with Lighthouse CI #79

Workflow file for this run

name: Testing project with Lighthouse CI
on:
push:
tags:
- '*'
jobs:
lhci:
name: Lighthouse CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: npm install, build
run: |
npm install
- name: run Lighthouse CI
run: |
npm install -g @lhci/[email protected]
lhci autorun --collect.staticDistDir=./variants --upload.target=temporary-public-storage
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}