mirror of
https://github.com/karakeep-app/karakeep.git
synced 2026-02-28 18:25:55 +01:00
25 lines
553 B
YAML
25 lines
553 B
YAML
name: "Setup and install"
|
|
description: "Common setup steps for Actions"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: pnpm/action-setup@v2
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
cache: "pnpm"
|
|
registry-url: https://registry.npmjs.org
|
|
|
|
- shell: bash
|
|
run: pnpm add -g turbo
|
|
|
|
- shell: bash
|
|
run: npm install -g corepack@0.31.0 && corepack enable
|
|
|
|
- shell: bash
|
|
run: pnpm install
|
|
env:
|
|
PUPPETEER_SKIP_DOWNLOAD: "true"
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "true"
|