Files
outline/.github/actions/install/action.yml
T

17 lines
412 B
YAML

name: Install
description: Set up Node.js, Corepack, and install dependencies with yarn cache
runs:
using: composite
steps:
- name: Enable Corepack
shell: bash
run: corepack enable
- name: Use Node.js 26.x
uses: actions/setup-node@v5
with:
node-version: 26.x
cache: "yarn"
- name: Install dependencies
shell: bash
run: yarn install --immutable