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
20 lines
No EOL
411 B
YAML
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 |