mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-25 07:45:41 +03:00
17 lines
356 B
YAML
17 lines
356 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
|
|
|