24 lines
588 B
YAML
24 lines
588 B
YAML
name: Install dependencies
|
|
|
|
description: Install dependencies
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: socketdev/action@937f824ec476dfd164d4a4d9995751427b0be143 # v1
|
|
with:
|
|
mode: firewall
|
|
|
|
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
|
|
name: Install Bun
|
|
with:
|
|
bun-version: "1.3.11"
|
|
|
|
- uses: voidzero-dev/setup-vp@8ecb39174989ce55af90f45cf55b02738599831d # v1
|
|
with:
|
|
node-version: '24'
|
|
cache: true
|
|
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: sfw vp install --frozen-lockfile
|