Skip to content

feat: Consolidate UVAI embeddings into EventRelay #4

feat: Consolidate UVAI embeddings into EventRelay

feat: Consolidate UVAI embeddings into EventRelay #4

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
permissions:
contents: read
actions: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm install --legacy-peer-deps
- name: Build packages
run: npx turbo run build || true
- uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: |
packages/*/dist
apps/*/dist
apps/*/.next
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install ruff
- run: ruff check src --ignore E402,F811,F401,F821,B904,B020,E701,E722 || true