* fix: split display path and query base path #709 * test(frontend): shared render utils * fix(file-tree): add missing path segments * chore: bump Bun version * fix: select kind for synthetic folders
15 lines
291 B
YAML
15 lines
291 B
YAML
name: Install dependencies
|
|
|
|
description: Install dependencies
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: oven-sh/setup-bun@v2
|
|
name: Install Bun
|
|
with:
|
|
bun-version: "1.3.11"
|
|
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: bun install --frozen-lockfile
|