feature/improve-tag-organization-ux #8

Merged
pkartch merged 22 commits from feature/improve-tag-organization-ux into main 2026-01-17 06:13:39 +00:00
Showing only changes of commit ae278de88b - Show all commits

View File

@@ -66,13 +66,14 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Python dependencies
run: pip3 install recipe-scrapers
- name: Setup Python and dependencies
run: |
# Check if python3 is available, install if not
if ! command -v python3 &> /dev/null; then
apt-get update -qq && apt-get install -y -qq python3 python3-pip
fi
# Install recipe-scrapers
pip3 install recipe-scrapers
- name: Install dependencies
run: npm ci