forgejo-helm/.forgejo/actions/setup-node/action.yml

20 lines
451 B
YAML
Raw Permalink Normal View History

# action.yml
name: setup-node
description: 'setup node'
runs:
using: 'composite'
steps:
2024-09-11 10:26:08 +00:00
- name: Setup pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
standalone: true
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version-file: .node-version
2024-09-11 10:26:08 +00:00
cache: 'pnpm'
2024-02-07 11:46:49 +00:00
- shell: bash
run: pnpm install --frozen-lockfile