2023-12-07 15:56:12 +00:00
|
|
|
# action.yml
|
|
|
|
|
name: setup-node
|
|
|
|
|
description: 'setup node'
|
|
|
|
|
|
|
|
|
|
runs:
|
|
|
|
|
using: 'composite'
|
|
|
|
|
steps:
|
2023-12-18 11:31:03 +00:00
|
|
|
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
|
2023-12-07 15:56:12 +00:00
|
|
|
with:
|
|
|
|
|
node-version-file: .node-version
|
|
|
|
|
cache: 'npm'
|
|
|
|
|
- shell: bash
|
|
|
|
|
run: npm ci
|