Skip to content

Commit

Permalink
Add server testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
xenosf committed Nov 5, 2024
1 parent c925a42 commit 8036599
Showing 1 changed file with 100 additions and 0 deletions.
100 changes: 100 additions & 0 deletions .github/workflows/server-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
name: Automated Testing (Server)

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
matching-service:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./server/matching-service
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Make envfile
uses: SpicyPizza/create-envfile@v2.0
with:
envkey_ENV: PROD
envkey_PORT_MATCHING: 3003
directory: .
file_name: .env
fail_on_empty: false
sort_keys: false
- name: Install Matching Service Dependencies
run: npm ci
- name: Run Tests
run: npm run test
question-service:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./server/question-service
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Make envfile
uses: SpicyPizza/create-envfile@v2.0
with:
envkey_ENV: PROD
envkey_PORT_QUESTION: 3002
envkey_DB_URI_QUESTION: mongodb://localhost:27017/question
directory: .
file_name: .env
fail_on_empty: false
sort_keys: false
- name: Install Question Service Dependencies
run: npm ci
- name: Run Tests
run: npm run test
user-service:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./server/user-service
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Make envfile
uses: SpicyPizza/create-envfile@v2.0
with:
envkey_ENV: PROD
envkey_PORT_MATCHING: 3001
envkey_DB_URI_USER: mongodb://localhost:27017/user
envkey_JWT_SECRET: secret
directory: .
file_name: .env
fail_on_empty: false
sort_keys: false
- name: Install User Service Dependencies
run: npm ci
- name: Run Tests
run: npm run test

0 comments on commit 8036599

Please sign in to comment.