-
Notifications
You must be signed in to change notification settings - Fork 12
/
action.yml
39 lines (39 loc) · 1.02 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: 'HTML5 Validator'
description: 'Checks HTML5 Syntax using html5validator'
author: Cyb3r-Jak3
branding:
icon: 'award'
color: 'green'
inputs:
root:
description: 'Path of the files to test'
required: false
config:
description: "Path of config file"
required: false
extra:
description: "Extra arguments to test with"
required: false
format:
description: "Format for logging output. Valid values: gnu, xml, json, text"
required: false
log_level:
description: "Logging Level. Valid values: DEBUG, INFO, WARNING. Default: WARNING"
required: false
default: "WARNING"
css:
description: "Checks css as well"
required: false
blacklist:
description: "Files or directories to ignore in checking"
required: false
skip_git_check:
description: "Skip checking that code has been checked out"
required: false
default: false
outputs:
result:
description: 'The exit code'
runs:
using: 'docker'
image: 'Dockerfile'