2023-12-07 15:56:12 +00:00
|
|
|
# action.yml
|
|
|
|
name: setup-node
|
|
|
|
description: 'setup node'
|
|
|
|
|
|
|
|
runs:
|
|
|
|
using: 'composite'
|
|
|
|
steps:
|
2024-10-24 14:01:04 +00:00
|
|
|
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
|
2023-12-07 15:56:12 +00:00
|
|
|
with:
|
|
|
|
node-version-file: .node-version
|
2024-02-07 11:12:18 +00:00
|
|
|
# cache: 'npm'
|
2023-12-07 15:56:12 +00:00
|
|
|
- shell: bash
|
2024-02-07 11:46:49 +00:00
|
|
|
run: corepack enable
|
|
|
|
- shell: bash
|
|
|
|
run: pnpm install --frozen-lockfile
|