mirror of
https://github.com/outline/outline.git
synced 2026-08-03 13:27:25 +03:00
17 lines
412 B
YAML
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
|