mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-27 02:04:22 +01:00
- Updated the Node.js version in .node-version and package.json to 20.19.0. - Revised README.md and docs/dev.md to reflect the new minimum Node.js requirement. - Adjusted setup-node action to use the version specified in .node-version for consistency.
18 lines
481 B
YAML
18 lines
481 B
YAML
name: "Setup Node & pnpm"
|
|
description: "Install pnpm and setup Node.js with pnpm cache (fixed versions)"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
|
|
with:
|
|
node-version-file: '.node-version'
|
|
|
|
- name: Setup pnpm
|
|
shell: bash
|
|
run: npm install -g pnpm
|
|
|
|
- name: Install Dependencies
|
|
shell: bash
|
|
run: pnpm i --frozen-lockfile --ignore-scripts
|