2021-06-16 18:37:37 +00:00
|
|
|
name: lighthouse
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: 'Which branch do you want to test?' # Limited to branch for now
|
|
|
|
required: false
|
|
|
|
default: 'master'
|
|
|
|
jobs:
|
|
|
|
lighthouse:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.inputs.version }}
|
2021-07-14 16:26:38 +00:00
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
2022-02-15 22:08:53 +00:00
|
|
|
node-version: '16'
|
2021-06-16 18:37:37 +00:00
|
|
|
- run: npm install && npm install -g @lhci/cli #Don't want to include this in our deps
|
2022-02-15 22:08:53 +00:00
|
|
|
- run: lhci autorun
|