2023-12-07 15:56:12 +00:00
|
|
|
# action.yml
|
|
|
|
|
name: setup-node
|
|
|
|
|
description: 'setup node'
|
|
|
|
|
|
|
|
|
|
runs:
|
|
|
|
|
using: 'composite'
|
|
|
|
|
steps:
|
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-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
|