Skip to content

Bump aiohttp from 3.13.3 to 3.13.4 in /lib/rag/ingestion/ingestion-image #3137

Bump aiohttp from 3.13.3 to 3.13.4 in /lib/rag/ingestion/ingestion-image

Bump aiohttp from 3.13.3 to 3.13.4 in /lib/rag/ingestion/ingestion-image #3137

name: Smoke Tests
permissions:
contents: read
# Trigger on every push to any branch
on:
push:
jobs:
smoke:
name: Run Cypress Smoke Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v4
with:
node-version: '24'
cache: 'npm'
- name: Install base dependencies
run: npm ci
# ────────────────────────────────────────────────────
# Start LISA UI in background & wait until it’s ready
# ────────────────────────────────────────────────────
- name: Start LISA UI server
run: npm run --prefix lib/user-interface/react dev &
- name: Wait for UI to respond
run: npx wait-on http://localhost:3000
# ────────────────────────────────────────────────────
# Execute Cypress tests
# ────────────────────────────────────────────────────
- name: Run Cypress Smoke Suite
run: npx cypress run --config-file cypress/cypress.smoke.config.ts
- name: Archive Cypress videos & screenshots
if: failure() || always()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
with:
name: cypress-smoke-artifacts
path: |
cypress/smoke/videos
cypress/smoke/screenshots