gitbutler/.github/actions/init-env-node/action.yaml
Mattias Granlund aa4e1667c7 Enable prettier for .vscode files
- unclear why these were ever ignored
2024-10-09 11:31:08 +02:00

16 lines
355 B
YAML

name: init-env-node
description: Prepare Node.js Environment
runs:
using: 'composite'
steps:
- uses: pnpm/action-setup@v4
name: Install pnpm
- uses: actions/setup-node@v4
name: Setup node
with:
cache: pnpm
node-version-file: '.nvmrc'
- name: Install dependencies
shell: bash
run: pnpm install