Skip to content

Remove backend subdir scope #2

Remove backend subdir scope

Remove backend subdir scope #2

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
run: pip install -r requirements.txt
- name: Install dependencies
run: npm install
- name: Install backend dependencies
run: npm install
- name: Build backend
run: npm run build