Skip to content
This repository was archived by the owner on Jun 29, 2025. It is now read-only.

Commit b16d539

Browse files
committed
chore: add system test action
1 parent 6358ac3 commit b16d539

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Backend system tests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
integration-tests:
10+
runs-on: ubuntu-latest
11+
container: node:18-alpine
12+
steps:
13+
- uses: actions/checkout@v2
14+
with:
15+
path: backend
16+
- name: Install Dependencies
17+
run: npm install
18+
- name: Create .env file
19+
run: mv .env.example .env
20+
- name: Run Server and Test with Newman
21+
run: npm run test:system

0 commit comments

Comments
 (0)