Skip to content

Initial computer vision kit #1

Initial computer vision kit

Initial computer vision kit #1

Workflow file for this run

name: Template CI
on:
push:
branches:
- main
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: |
package-lock.json
frontend/package-lock.json
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install root tooling
run: npm ci
- name: Install frontend dependencies
run: npm ci
working-directory: frontend
- name: Install backend dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ./backend[dev]
- name: Generate API types
run: npm run api:types
- name: Run template checks
run: npm run check