Skip to content

ci: remove rahti webhook from main #88

ci: remove rahti webhook from main

ci: remove rahti webhook from main #88

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: "22.x"
- name: Install Node dependencies
run: |
cd client
npm install
- name: Run Vitest tests
run: |
cd client
npm test
- 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.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- 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
- name: Docker Compose
run: docker compose up --build -d
- name: Run Cypress tests
uses: cypress-io/github-action@v6
with:
wait-on: http://localhost:4000
working-directory: client
env:
CI: true
#- name: OpenShift-webhook trigger
# run: |
# curl -X POST -k "${{ secrets.OPENSHIFT_WEBHOOK_URL }}"