mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2026-03-26 07:01:46 +00:00
15 lines
324 B
YAML
15 lines
324 B
YAML
name: Setup UI Env
|
|
description: Setup node and install dependencies
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
|
|
- name: Install packages
|
|
shell: bash
|
|
run: yarn install
|