mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-20 14:57:56 -04:00
16 lines
290 B
YAML
16 lines
290 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.6"
|
|
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: bun install --frozen-lockfile
|