* 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
15 lines
290 B
YAML
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
|