mirror of
https://github.com/documenso/documenso.git
synced 2026-07-12 22:15:01 +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
20 lines
599 B
YAML
20 lines
599 B
YAML
name: Install playwright binaries
|
|
description: 'Install playwright, cache and restore if necessary'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Cache playwright
|
|
id: cache-playwright
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cache/ms-playwright
|
|
${{ github.workspace }}/node_modules/playwright
|
|
key: playwright-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: playwright-
|
|
|
|
- name: Install playwright
|
|
if: steps.cache-playwright.outputs.cache-hit != 'true'
|
|
run: pnpm exec playwright install --with-deps
|
|
shell: bash
|