mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2026-05-14 15:01:44 +00:00
* chore: bump @rancher/shell to 3.0.12-rc.1 Signed-off-by: Andy Lee <andy.lee@suse.com> * ci: update node version to 24 Signed-off-by: Andy Lee <andy.lee@suse.com> * ci: update build catalog yaml Signed-off-by: Andy Lee <andy.lee@suse.com> * fix: nav items order Signed-off-by: Andy Lee <andy.lee@suse.com> * refactor: remove unneeded weightType Signed-off-by: Andy Lee <andy.lee@suse.com> --------- Signed-off-by: Andy Lee <andy.lee@suse.com>
16 lines
367 B
YAML
16 lines
367 B
YAML
name: Setup UI Env
|
|
description: Setup node and install dependencies
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Setup Nodejs with yarn caching
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
|
|
- name: Install packages
|
|
shell: bash
|
|
run: yarn install
|