mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-02 07:53:55 +03:00
aa4e1667c7
- unclear why these were ever ignored
16 lines
355 B
YAML
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
|