mirror of https://github.com/Chocobozzz/PeerTube
32 lines
688 B
YAML
32 lines
688 B
YAML
name: "Reusable prepare PeerTube build"
|
|
|
|
description: "Reusable prepare PeerTube build"
|
|
|
|
inputs:
|
|
node-version:
|
|
required: true
|
|
description: 'NodeJS version'
|
|
|
|
runs:
|
|
using: "composite"
|
|
|
|
steps:
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ inputs.node-version }}
|
|
|
|
- name: Cache Node.js modules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
**/node_modules
|
|
key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.OS }}-node-
|
|
${{ runner.OS }}-
|
|
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: yarn install --frozen-lockfile
|