mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-03-10 06:00:19 +00:00
- Implemented a new Diff view in the Workbench to track file changes - Added file history tracking with version control and change tracking - Created a FileModifiedDropdown to browse and manage modified files - Enhanced ActionRunner to support file history persistence - Updated Workbench and BaseChat components to support new diff view functionality - Added support for inline and side-by-side diff view modes
37 lines
756 B
YAML
37 lines
756 B
YAML
name: Setup and Build
|
|
description: Generic setup action
|
|
inputs:
|
|
pnpm-version:
|
|
required: false
|
|
type: string
|
|
default: '9.4.0'
|
|
node-version:
|
|
required: false
|
|
type: string
|
|
default: '20.15.1'
|
|
|
|
runs:
|
|
using: composite
|
|
|
|
steps:
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: ${{ inputs.pnpm-version }}
|
|
run_install: false
|
|
|
|
- name: Set Node.js version to ${{ inputs.node-version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ inputs.node-version }}
|
|
cache: pnpm
|
|
|
|
- name: Install dependencies and build project
|
|
shell: bash
|
|
run: |
|
|
pnpm install
|
|
pnpm run build
|
|
|
|
- name: Create history directory
|
|
shell: bash
|
|
run: mkdir -p .history
|