Skip to content

Add CI workflows (testing & linting) #1

Add CI workflows (testing & linting)

Add CI workflows (testing & linting) #1

Workflow file for this run

name: System Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
system:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
browser: [firefox, chrome]
runs-on: ${{ matrix.os }}
env:
BROWSER: ${{ matrix.browser }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Outer Folder Dependencies
run: |
npm ci
- name: Make envfile
uses: SpicyPizza/[email protected]
with:
envkey_ENV: PROD
envkey_PORT_MATCHING: 3001
envkey_PORT_QUESTION: 3002
envkey_PORT_MATCHING: 3003

Check failure on line 36 in .github/workflows/system-test.yml

View workflow run for this annotation

GitHub Actions / System Testing

Invalid workflow file

The workflow is not valid. .github/workflows/system-test.yml (Line: 36, Col: 11): 'envkey_PORT_MATCHING' is already defined
envkey_DB_URI_QUESTION: mongodb://localhost:27017/question
envkey_DB_URI_USER: mongodb://localhost:27017/user
envkey_JWT_SECRET: secret
directory: .
file_name: .env
fail_on_empty: false
sort_keys: false
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: latest
- name: Setup & run server
run: |
cd server
docker compose -f docker-compose.local.yml build
docker compose -f docker-compose.local.yml up -d
- name: Setup & run client
run: |
cd client
npm ci
npm run start
- name: Run Tests
run: xvfb-run --server-args="-screen 0 1024x768x24" npm run test