zerobyte/.github/actions/install-dependencies/action.yml
Nico 61dc07b36b
Controllers tests (#187)
* test: backups service

* refactor: create hono app in a separate file

To avoid side effects like db migration or startup scripts when testing

test(backups): add security tests to the backups controller

* ci: run typechecks, build and tests on PR

* test: controllers security tests

* chore: update lock file

* refactor: pr feedbacks
2025-12-19 19:25:21 +01:00

15 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.5"
- name: Install dependencies
shell: bash
run: bun install --frozen-lockfile