Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ inputs:
description: The version of Node.js to install for compatibility/native builds
required: true
default: 24
install-dependencies:
description: Whether to run bun install for the workspace
required: true
default: "true"

runs:
using: composite
Expand Down Expand Up @@ -56,5 +60,6 @@ runs:
shell: bash
run: npm install -g node-gyp
- name: Install dependencies
if: inputs.install-dependencies == 'true'
shell: bash
run: bun install --frozen-lockfile
Loading