* fix: composite action input pollution * fix run steps * fix missing defaults in post after env cleanup * fix test to make more sense * Add tests and simplify change --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
17 lines
252 B
YAML
17 lines
252 B
YAML
name: "Action with pre and post"
|
|
description: "Action with pre and post"
|
|
|
|
inputs:
|
|
step:
|
|
description: "step"
|
|
required: true
|
|
cache:
|
|
required: false
|
|
default: false
|
|
|
|
runs:
|
|
using: "node16"
|
|
pre: pre.js
|
|
main: main.js
|
|
post: post.js
|