mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 01:39:37 +02:00
31 lines
641 B
YAML
31 lines
641 B
YAML
name: "Reusable prepare PeerTube build"
|
|
|
|
description: "Reusable prepare PeerTube build"
|
|
|
|
inputs:
|
|
node-version:
|
|
required: true
|
|
description: 'NodeJS version'
|
|
|
|
runs:
|
|
using: "composite"
|
|
|
|
steps:
|
|
- uses: pnpm/action-setup@v4
|
|
name: Install pnpm
|
|
with:
|
|
run_install: false
|
|
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ inputs.node-version }}
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: npm run install-node-dependencies
|
|
|
|
- name: Display PeerTube dependencies
|
|
shell: bash
|
|
run: ls -l node_modules/@peertube
|