Files
fusion/.github/actions/setup-node-pnpm/action.yml
Fusion fe1ef21daa feat(FN-4157): remove composite checkout, add workflow-level checkout steps
Fixes overlap merge checkout logic by removing the composite checkout approach and replacing it with explicit workflow-specific checkout steps, with a new CI job to guard against regressions and a test hardening the temporary directory cleanup path.

Fusion-Task-Id: FN-4157
2026-05-12 17:03:10 -07:00

27 lines
638 B
YAML

name: setup-node-pnpm
description: "Install pnpm, setup Node.js, install dependencies"
inputs:
node-version:
description: Node.js version
required: false
default: "24"
install-args:
description: Arguments passed to pnpm install
required: false
default: "--frozen-lockfile"
runs:
using: composite
steps:
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: ${{ inputs.node-version }}
cache: pnpm
- name: Install dependencies
shell: bash
run: pnpm install ${{ inputs.install-args }}