Skip to content

feat: Museum polish — landing CTAs, breadcrumbs, loading state #199

feat: Museum polish — landing CTAs, breadcrumbs, loading state

feat: Museum polish — landing CTAs, breadcrumbs, loading state #199

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-python:
name: Python Tests (255)
runs-on: ubuntu-latest
env:
PYTHONPATH: creatures-core:creatures-api
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
cache-dependency-path: creatures-core/pyproject.toml
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgl1 libosmesa6
- name: Install creatures-core[dev]
run: pip install -e "./creatures-core[dev]"
- name: Run full test suite
run: python -m pytest creatures-core/tests/ -v --tb=short
check-typescript:
name: TypeScript Check
runs-on: ubuntu-latest
defaults:
run:
working-directory: creatures-web
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: creatures-web/package-lock.json
- name: Install dependencies
run: npm ci
- name: TypeScript type check
run: npx tsc --noEmit