forked from JossyDevers/minify-js
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
22 lines (19 loc) · 748 Bytes
/
action.yml
File metadata and controls
22 lines (19 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: 'HTML/CSS/JS Minifier'
author: devatherock
description: 'Github action to minify html, javascript and css files'
inputs:
directory:
description: "File to minify or a folder containing files to minify. By default, all files in current folder and its subfolders will be minified"
required: false
output:
description: "Path where the minified files will be saved. By default, the minified files will be saved in the original file path"
required: false
add_suffix:
description: "Indicates if the output files should have the suffix '.min' added after the name. Default is true"
required: false
runs:
using: 'docker'
image: 'docker://devatherock/minify-js:1.0.2'
branding:
icon: "minimize"
color: "orange"