feat/ci-tests (#97)

This commit is contained in:
dswbx
2025-02-26 17:15:51 +01:00
committed by GitHub
parent 253174c14e
commit b6d28bbf42
7 changed files with 46 additions and 13 deletions

26
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Run Tests
on:
pull_request:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
working-directory: ./app
run: bun install
- name: Run tests
working-directory: ./app
run: bun run test