-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
24 lines (24 loc) · 1001 Bytes
/
action.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
name: 'Lighthouse Check Status'
description: 'A GitHub Action used to handle output from "foo-software/lighthouse-check-action" and determine workflow status.'
inputs:
lighthouseCheckResults:
description: 'A results object representing results of Lighthouse audits.'
required: true
minAccessibilityScore:
description: 'The minimum accessibility Lighthouse score required.'
minBestPracticesScore:
description: 'The minimum best practices Lighthouse score required.'
minPerformanceScore:
description: 'The minimum performance Lighthouse score required.'
minProgressiveWebAppScore:
description: 'The minimum progressive web app Lighthouse score required.'
minSeoScore:
description: 'The minimum SEO Lighthouse score required.'
outputDirectory:
description: 'An absolute directory path to output report. When the results object is not specified, this value will need to be.'
runs:
using: 'node20'
main: 'index.js'
branding:
icon: 'zap'
color: 'green'