mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
17 lines
390 B
YAML
17 lines
390 B
YAML
name: "Setup Node"
|
|
description: "Sets up the correct Node version and installs pnpm"
|
|
inputs:
|
|
node-version:
|
|
description: "Version of nodejs to install"
|
|
required: false
|
|
default: '18'
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 8
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ inputs.node-version }}
|