More action changes.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-09 10:20:00 -04:00
parent 28f62b2ed4
commit 3e0ae11edd
2 changed files with 10 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare .env in root
run: cp .env.example .env
- name: Build and push backend image
uses: docker/build-push-action@v5
with:

View File

@@ -33,5 +33,13 @@ jobs:
run: npm install -g yarn
- name: Install nox-poetry
run: pipx inject nox nox-poetry
- name: Install Python dependencies (backend)
run: |
cd backend
poetry install
- name: Install JS dependencies (frontend)
run: |
cd frontend
yarn install
- name: Run Nox (all checks)
run: nox