2023-12-07 15:56:12 +00:00
|
|
|
# action.yml
|
|
|
|
|
name: setup-node
|
|
|
|
|
description: 'setup node'
|
|
|
|
|
|
|
|
|
|
runs:
|
|
|
|
|
using: 'composite'
|
|
|
|
|
steps:
|
2024-09-11 12:26:08 +02:00
|
|
|
- name: Setup pnpm
|
2025-02-08 17:38:47 +00:00
|
|
|
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
|
2024-09-11 12:26:08 +02:00
|
|
|
with:
|
|
|
|
|
standalone: true
|
|
|
|
|
|
2025-01-27 04:41:12 +00:00
|
|
|
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
2023-12-07 15:56:12 +00:00
|
|
|
with:
|
|
|
|
|
node-version-file: .node-version
|
2024-09-11 12:26:08 +02:00
|
|
|
cache: 'pnpm'
|
|
|
|
|
|
2024-02-07 12:46:49 +01:00
|
|
|
- shell: bash
|
|
|
|
|
run: pnpm install --frozen-lockfile
|