Skip to content

docs: add author section with skills and open-to-work status #2

docs: add author section with skills and open-to-work status

docs: add author section with skills and open-to-work status #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
cd backend
pip install -r requirements.txt
- name: Check syntax
run: |
cd backend
python -m py_compile app.py
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install dependencies
run: |
cd frontend
npm install
- name: Type check
run: |
cd frontend
npx tsc --noEmit || true
- name: Build
run: |
cd frontend
npm run build
env:
NEXT_PUBLIC_API_URL: http://localhost:8000