Skip to content

Add CI build check

Add CI build check #1

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.14'
- name: Install Python dependencies
working-directory: ./backend
run: pip install -r requirements.txt
- name: Install dependencies
run: npm install
- name: Install backend dependencies
working-directory: ./backend
run: npm install
- name: Build backend
working-directory: ./backend
run: npm run build