chore: add Tailwind v4 build/watch npm scripts to package.json #324
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Grace-AI CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| # This installs EVERYTHING (FastAPI, Google GenAI, DB drivers, etc.) | |
| pip install -r requirements.txt | |
| # Install testing tools separately if they aren't in requirements.txt | |
| pip install pytest pytest-asyncio httpx | |
| - name: Proof of Success | |
| run: echo "Poetry is officially dead. Long live requirements.txt" |