Files
openconcho/.github/actions/setup/action.yml
Offending Commit 96d96a7341 chore(fire-tools): upgrade stamp to v1.14.0
- Bump fire_tools_version from 1.13.2 to 1.14.0
- Upgrade pnpm/action-setup@v4 to @v6 in composite setup action
2026-05-15 14:24:01 -05:00

16 lines
335 B
YAML

name: Setup pnpm and Node.js
description: Configure pnpm and Node.js 24 with caching, then install dependencies
runs:
using: composite
steps:
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v4
with:
node-version: "24"
cache: pnpm
- run: pnpm install --frozen-lockfile
shell: bash