-
Notifications
You must be signed in to change notification settings - Fork 9
48 lines (46 loc) · 1.45 KB
/
lighthouse.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Audit site with Lighthouse CI
on: [pull_request]
jobs:
lhci-mobile:
name: Run mobile Lighthouse CI audits
if: github.repository_owner == 'inclusive-design' && github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Wait for Netlify deploy preview
uses: jakepartusch/wait-for-netlify-action@v1.4
id: netlify
with:
site_name: idrc
max_timeout: 300
- name: Run Lighthouse CI audits
uses: treosh/lighthouse-ci-action@v9
with:
runs: 3
urls: |
${{ steps.netlify.outputs.url }}
uploadArtifacts: true
temporaryPublicStorage: true
configPath: ./.lighthouserc.js
lhci-desktop:
name: Run desktop Lighthouse CI audits
if: github.repository_owner == 'inclusive-design' && github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Wait for Netlify deploy preview
uses: jakepartusch/wait-for-netlify-action@v1.4
id: netlify
with:
site_name: idrc
- name: Run Lighthouse CI audits
uses: treosh/lighthouse-ci-action@v9
with:
runs: 3
urls: |
${{ steps.netlify.outputs.url }}
uploadArtifacts: true
temporaryPublicStorage: true
configPath: ./.lighthouserc.js
env:
EMULATE_DEVICE: desktop