mirror of
https://github.com/nick-fields/retry.git
synced 2025-12-29 03:09:37 +08:00
16 lines
405 B
YAML
16 lines
405 B
YAML
name: Setup Node, PNPM, cache, and install dependencies
|
|
description: Sets up job to use the nodejs version in .nvmrc, pnpm, cache, and install dependencies
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: pnpm/action-setup@v3
|
|
with:
|
|
version: 9.5.0
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: ./.nvmrc
|
|
cache: 'pnpm'
|
|
- run: pnpm install
|
|
shell: bash
|