2023-12-07 15:56:12 +00:00
|
|
|
# action.yml
|
|
|
|
name: setup-node
|
|
|
|
description: 'setup node'
|
|
|
|
|
|
|
|
runs:
|
|
|
|
using: 'composite'
|
|
|
|
steps:
|
2024-09-11 10:26:08 +00:00
|
|
|
- name: Setup pnpm
|
2025-02-08 17:38:47 +00:00
|
|
|
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
|
2024-09-11 10:26:08 +00:00
|
|
|
with:
|
|
|
|
standalone: true
|
|
|
|
|
2025-03-17 03:42:53 +00:00
|
|
|
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
|
2023-12-07 15:56:12 +00:00
|
|
|
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
|