mirror of
https://github.com/documenso/documenso.git
synced 2026-07-08 03:55:07 +10:00
960217c78d
- Switch package manager to pnpm 10 via corepack - Add pnpm-workspace.yaml with 54+ shared dependency catalogs - Convert all workspace packages to catalog: and workspace:* protocols - Upgrade Turborepo from 1.x to 2.8.12 (pipeline -> tasks) - Upgrade apps/openpage-api from Next 15 to Next 16 - Update Docker, CI workflows, and GitHub Actions for pnpm - Convert patch file to pnpm native format - Replace deprecated next lint with standalone eslint - Update all documentation references from npm to pnpm - Fix stale dependabot config and documentation paths
26 lines
548 B
YAML
26 lines
548 B
YAML
name: 'Setup node and install dependencies with pnpm'
|
|
inputs:
|
|
node_version:
|
|
required: false
|
|
default: v22.x
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Set up Node ${{ inputs.node_version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ inputs.node_version }}
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: |
|
|
pnpm install --frozen-lockfile
|
|
pnpm run prisma:generate
|
|
env:
|
|
HUSKY: '0'
|