mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-03-03 23:02:17 +08:00
18 lines
366 B
YAML
18 lines
366 B
YAML
name: 'GitHub Action for Yarn'
|
|
description: 'Wraps the yarn CLI to enable common yarn commands'
|
|
author: 'Alex Bordun'
|
|
branding:
|
|
icon: 'package'
|
|
color: 'blue'
|
|
inputs:
|
|
cmd:
|
|
description: 'Yarn command'
|
|
required: true
|
|
dir:
|
|
description: 'Yarn sub-folder (if needed)'
|
|
required: false
|
|
default: ''
|
|
runs:
|
|
using: 'node20'
|
|
main: 'dist/index.js'
|