mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-10 22:02:50 +00:00
22 lines
507 B
YAML
22 lines
507 B
YAML
name: Setup
|
|
description: Perform standard setup and install dependencies using pnpm.
|
|
inputs:
|
|
node-version:
|
|
description: The version of Node.js to install
|
|
required: true
|
|
default: 24.5.0
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v3
|
|
- name: Install node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
cache: pnpm
|
|
node-version: ${{ inputs.node-version }}
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: pnpm install
|