Add CI workflow for backend tests using GitHub Actions
Some checks failed
Backend Tests / test (push) Failing after 4m56s
Lint / lint (push) Has been cancelled

This commit is contained in:
2026-01-07 21:09:49 +01:00
parent 06d2a65567
commit 3363ef52ef

View File

@@ -0,0 +1,25 @@
name: Backend Tests
on:
push:
paths:
- 'backend/**'
pull_request:
paths:
- 'backend/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run Backend Tests
run: pnpm -F @memegoat/backend test