1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
name: Lighthouse
on: [push, pull_request]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: 3.12
- name: Install dask-sphinx-theme
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install -r docs/requirements.txt
- name: Make example docs
run: |
cd docs
make html
- name: Run Lighthouse against example docs build
uses: treosh/lighthouse-ci-action@v12
with:
configPath: "./lighthouserc.json"
temporaryPublicStorage: true
|