2023-12-07 15:56:12 +00:00
|
|
|
# action.yml
|
|
|
|
|
name: setup-node
|
|
|
|
|
description: 'setup node'
|
|
|
|
|
|
|
|
|
|
runs:
|
|
|
|
|
using: 'composite'
|
|
|
|
|
steps:
|
2024-02-07 05:01:28 +00:00
|
|
|
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
2023-12-07 15:56:12 +00:00
|
|
|
with:
|
|
|
|
|
node-version-file: .node-version
|
2024-02-07 12:12:18 +01:00
|
|
|
# cache: 'npm'
|
2023-12-07 15:56:12 +00:00
|
|
|
- shell: bash
|
2024-02-07 12:46:49 +01:00
|
|
|
run: corepack enable
|
|
|
|
|
- shell: bash
|
|
|
|
|
run: pnpm install --frozen-lockfile
|