Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .github/actions/setup-mux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ runs:
run: echo "version=$(bun --version)" >> $GITHUB_OUTPUT

- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v4
with:
path: node_modules
Expand All @@ -22,6 +23,7 @@ runs:
${{ runner.os }}-${{ runner.arch }}-bun-${{ steps.bun-version.outputs.version }}-node-modules-

- name: Cache bun install cache
id: cache-bun-install
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
Expand All @@ -30,6 +32,7 @@ runs:
${{ runner.os }}-bun-cache-

- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
shell: bash
run: bun install --frozen-lockfile