achat-maison-albi-fr/.github/actions/install/action.yml
Emil Gulamov cebc5deed6 Update PNPM version in GitHub Actions workflow
Modified the GitHub Actions workflow to use a specific version of PNPM. This can ensure a consistent environment for the setup and execution of necessary tools and
2024-03-19 17:33:39 +04:00

20 lines
No EOL
411 B
YAML

name: Install Tools & Dependencies
description: Installs pnpm, Node.js & package dependencies
runs:
using: composite
steps:
- name: Setup PNPM
uses: pnpm/action-setup@v3
with:
version: 8.15.5
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
shell: bash