Adding initial action.yml

This commit is contained in:
Borales 2019-10-13 23:32:40 +02:00
parent 8148c8b160
commit 3dbac8fd64
No known key found for this signature in database
GPG Key ID: CDC05EA9067B0EB5

14
action.yml Normal file
View File

@ -0,0 +1,14 @@
name: 'GitHub Action for Yarn'
description: 'Wraps the yarn CLI to enable common yarn commands'
inputs:
cmd:
description: 'Yarn command'
required: true
outputs:
time: # id of output
description: 'The time we greeted you'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.cmd }}