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
|
|
|
|
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
|
|
|
|
with:
|
|
|
|
standalone: true
|
|
|
|
|
2024-07-10 20:40:03 +00:00
|
|
|
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
|
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
|