Alexandre Bodin 4bcce63afb Use local actions
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-10-14 19:26:25 +02:00

13 lines
311 B
YAML

name: 'Install modules'
description: 'Run yarn install and add global modules'
inputs:
globalPackages:
description: 'Global packages to install'
runs:
using: 'composite'
steps:
- run: $GITHUB_ACTION_PATH/script.sh
env:
GLOBAL_PACKAGES: ${{ inputs.globalPackages }}
shell: bash