ci: run backend tests in woodpecker pipeline
Some checks failed
ci/woodpecker/pr/woodpecker Pipeline failed

This commit is contained in:
chahinebrini 2026-06-18 10:22:09 +02:00
parent b9c48dfd63
commit ad94a99a50

View File

@ -16,12 +16,19 @@ steps:
- *pnpm_setup
- pnpm install --frozen-lockfile
test-backend:
image: *node_image
commands:
- *pnpm_setup
- cd backend && pnpm test
depends_on: [install]
build-backend:
image: *node_image
commands:
- *pnpm_setup
- cd backend && NODE_OPTIONS=--max-old-space-size=4096 pnpm build
depends_on: [install]
depends_on: [test-backend]
build-admin:
image: *node_image