name: CI on: push: pull_request: jobs: build-and-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 22 cache: npm cache-dependency-path: | package-lock.json ui/package-lock.json - name: Install dependencies run: | npm ci npm --prefix ui ci - name: Build run: npm run build:all -- --skip-python - name: Test run: npm test