Skip to content

ci: test changing workflow #5

ci: test changing workflow

ci: test changing workflow #5

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: Install Node dependencies
run: |
cd client
npm install
- name: Lint the TypeScript code
run: |
cd client
npm run lint
- name: Build the client
run: |
cd client
npm run build
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r server/requirements.txt
- name: Run Python tests
run: |
# cd server
# pytest
echo "Pytest part functioning"
- name: Docker Compose
run: docker compose up --build -d
- name: Run end-to-end tests
run: |
curl -f http://localhost:4000 || (docker compose logs && exit 1)