mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-24 16:54:21 +01:00
20 lines
571 B
YAML
20 lines
571 B
YAML
name: "Setup Node & pnpm"
|
|
description: "Install pnpm and setup Node.js with pnpm cache (fixed versions)"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
|
|
with:
|
|
version: 10.8.1
|
|
|
|
- name: Setup Node.js 20.12.0
|
|
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
|
|
with:
|
|
node-version: 20.12.0
|
|
cache: pnpm
|
|
|
|
- name: Install Dependencies
|
|
shell: bash
|
|
run: pnpm install --frozen-lockfile --ignore-scripts
|