Files
pingvin-share/.github/workflows/backend-system-tests.yml
2025-04-23 08:52:36 +02:00

24 lines
461 B
YAML

name: Backend system tests
on:
pull_request:
branches:
- main
push:
tags:
- "v*"
jobs:
system-tests:
timeout-minutes: 15
runs-on: ubuntu-latest
container: node:22
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
working-directory: ./backend
run: npm install
- name: Run Server and Test with Newman
working-directory: ./backend
run: npm run test:system