Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Update to Vue 3 with Vuetify 3, Vite and pinia #7

Update to Vue 3 with Vuetify 3, Vite and pinia

Update to Vue 3 with Vuetify 3, Vite and pinia #7

Workflow file for this run

name: Lighthouse
on:
push:
branches:
- 'main'
pull_request:
jobs:
lighthouse:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
with:
fetch-depth: 0
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies 📦
run: yarn install --immutable
- name: Run build
run: yarn run build
env:
# That way we can test pages that are normally hidden behind /login
VITE_REDIRECT_UNAUTHENTICATED: 'false'
- name: Run Lighthouse tests
run: |
npm install -g @lhci/[email protected]
lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}