Skip to content

Add Projects (tag) management and ticket→project association #8

Add Projects (tag) management and ticket→project association

Add Projects (tag) management and ticket→project association #8

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
api-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install API dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt pytest
- name: Run API smoke tests
run: PYTHONPATH=apps/dashboard_api pytest -q apps/dashboard_api/tests
web-build:
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
working-directory: apps/dashboard_web
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: apps/dashboard_web/package-lock.json
- name: Install Web dependencies
run: npm ci
- name: Build Web app
run: npm run build