mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-04-03 03:03:16 +08:00
15 lines
315 B
YAML
15 lines
315 B
YAML
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 }}
|