release: 1.8.0 #817
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Backend system tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
tags: | |
- "v*" | |
jobs: | |
system-tests: | |
runs-on: ubuntu-latest | |
container: node:18 | |
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 |