mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 05:01:43 +00:00
15 lines
281 B
YAML
15 lines
281 B
YAML
name: Setup UI Env
|
|
description: Setup node and install dependencies
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
|
|
- name: Install packages
|
|
shell: bash
|
|
run: yarn install
|