2022-11-29 11:36:57 -05:00
|
|
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
name: Setup Node
|
|
|
|
description: "Setups node and configures the cache"
|
|
|
|
|
|
|
|
inputs:
|
2022-12-11 18:46:30 -05:00
|
|
|
NODEJS_VERSION:
|
2022-11-29 11:36:57 -05:00
|
|
|
required: true
|
2022-12-11 18:46:30 -05:00
|
|
|
description: "NodeJS version to install"
|
2022-11-29 11:36:57 -05:00
|
|
|
|
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Cache yarn cache
|
2024-08-28 18:21:57 -04:00
|
|
|
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
|
2022-11-29 11:36:57 -05:00
|
|
|
id: yarn-cache
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
2023-02-18 09:27:49 -05:00
|
|
|
key: ${{ runner.os }}-yarn
|
2022-11-29 11:36:57 -05:00
|
|
|
|
|
|
|
- name: Set up NodeJS
|
2024-08-28 18:27:35 -04:00
|
|
|
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
|
2022-11-29 11:36:57 -05:00
|
|
|
with:
|
2022-12-11 18:46:30 -05:00
|
|
|
node-version: ${{ inputs.NODEJS_VERSION }}
|
2022-11-29 11:36:57 -05:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install --immutable
|
|
|
|
working-directory: .
|
|
|
|
shell: bash
|