fix: fix CI scripts

This commit is contained in:
Abhishek Kumar 2026-05-25 20:37:22 +05:30
parent 9aff6620a2
commit 0a0a1a35e5
2 changed files with 10 additions and 0 deletions

View file

@ -80,6 +80,11 @@ jobs:
with:
node-version: "22"
- name: Create Python virtual environment
run: |
python -m venv .venv
echo "${{ github.workspace }}/.venv/bin" >> "$GITHUB_PATH"
- name: Install api and pipecat dependencies
run: ./scripts/setup_requirements.sh --dev

View file

@ -44,6 +44,11 @@ jobs:
cache: npm
cache-dependency-path: ui/package-lock.json
- name: Create Python virtual environment
run: |
python -m venv .venv
echo "${{ github.workspace }}/.venv/bin" >> "$GITHUB_PATH"
- name: Install api and pipecat dependencies
run: ./scripts/setup_requirements.sh --dev