fix: system test github action

This commit is contained in:
Elias Schneider
2022-10-14 09:26:30 +02:00
parent c27c3dae9c
commit a2c9755756
2 changed files with 6 additions and 6 deletions

View File

@@ -6,16 +6,17 @@ on:
- main
jobs:
integration-tests:
system-tests:
runs-on: ubuntu-latest
container: node:18-alpine
container: node:18
steps:
- uses: actions/checkout@v2
with:
path: backend
- name: Install Dependencies
working-directory: ./backend
run: npm install
- name: Create .env file
working-directory: ./backend
run: mv .env.example .env
- name: Run Server and Test with Newman
working-directory: ./backend
run: npm run test:system