Utility method to parse action's inputs
$ npm install @wow-actions/parse-inputs --save
import parseInputs from '@wow-actions/parse-inputs';
const inputs = parseInputs({
foo: { type: 'boolean' },
bar: { type: 'stringArray', required: true}
}); // => { foo: true, bar: ['Hello, Action', 'GitHub Action is cool']}
The scripts and documentation in this project are released under the MIT License.