mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
34 lines
898 B
YAML
34 lines
898 B
YAML
|
name: Install frontend dependencies
|
||
|
description: Installs frontend dependencies with pnpm, with caching
|
||
|
runs:
|
||
|
using: 'composite'
|
||
|
steps:
|
||
|
- name: Setup Node 18
|
||
|
uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: '18'
|
||
|
|
||
|
- name: Setup pnpm
|
||
|
uses: pnpm/action-setup@v2
|
||
|
with:
|
||
|
version: 8
|
||
|
run_install: false
|
||
|
|
||
|
- name: Get pnpm store directory
|
||
|
shell: bash
|
||
|
run: |
|
||
|
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
||
|
|
||
|
- uses: actions/cache@v3
|
||
|
name: Setup pnpm cache
|
||
|
with:
|
||
|
path: ${{ env.STORE_PATH }}
|
||
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-pnpm-store-
|
||
|
|
||
|
- name: Install frontend dependencies
|
||
|
run: pnpm install --prefer-frozen-lockfile
|
||
|
shell: bash
|
||
|
working-directory: invokeai/frontend/web
|