mirror of https://github.com/openclaw/openclaw.git
CI: add sticky-disk toggle to setup node action
This commit is contained in:
parent
6bf1abf603
commit
8a463af823
|
|
@ -15,6 +15,10 @@ inputs:
|
|||
description: Whether to install Bun alongside Node.
|
||||
required: false
|
||||
default: "true"
|
||||
use-sticky-disk:
|
||||
description: Use Blacksmith sticky disks for pnpm store caching.
|
||||
required: false
|
||||
default: "false"
|
||||
frozen-lockfile:
|
||||
description: Whether to use --frozen-lockfile for install.
|
||||
required: false
|
||||
|
|
@ -47,6 +51,7 @@ runs:
|
|||
with:
|
||||
pnpm-version: ${{ inputs.pnpm-version }}
|
||||
cache-key-suffix: "node22"
|
||||
use-sticky-disk: ${{ inputs.use-sticky-disk }}
|
||||
|
||||
- name: Setup Bun
|
||||
if: inputs.install-bun == 'true'
|
||||
|
|
|
|||
Loading…
Reference in New Issue