Skip to content

fix(docker): modify docker files abit for rahti to work #21

fix(docker): modify docker files abit for rahti to work

fix(docker): modify docker files abit for rahti to work #21

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ohtukontitus/news-collection:latest
- 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: Wait for container to build
run: sleep 10
- name: Run end-to-end tests
run: |
curl -f http://localhost:4000 || (docker compose logs && exit 1)