Files
fressh/.github/actions/setup/action.yml
EthanShoeDev 0af3393e2f Add ci
2025-09-09 22:47:31 -04:00

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