Compare commits
2 Commits
main
...
283417fe24
| Author | SHA1 | Date | |
|---|---|---|---|
| 283417fe24 | |||
| df56754c55 |
+74
-54
@@ -19,11 +19,68 @@ jobs:
|
||||
mkcert -install
|
||||
mkcert -cert-file certs/localhost.pem -key-file certs/localhost-key.pem localhost 127.0.0.1 ::1
|
||||
|
||||
- name: Cache certificates
|
||||
uses: actions/cache/save@v4
|
||||
- name: Upload certificates
|
||||
uses: christopherHX/gitea-upload-artifact@v4
|
||||
with:
|
||||
path: certs
|
||||
key: certs-${{ runner.os }}-${{ github.sha }}
|
||||
name: ssl-certs
|
||||
path: certs/
|
||||
retention-days: 1
|
||||
|
||||
backend:
|
||||
name: Backend CI
|
||||
runs-on: ubuntu-latest
|
||||
needs: setup-environment
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
env:
|
||||
POSTGRES_DB: piku_test
|
||||
POSTGRES_USER: test
|
||||
POSTGRES_PASSWORD: password123
|
||||
# WHY?: gitea act runner seems to persist volumes (veryyy stubborn -_-)
|
||||
# Redirecting PGDATA to /tmp ensures a fresh init every run.
|
||||
PGDATA: /tmp/pgdata
|
||||
ports:
|
||||
- 5442:5432
|
||||
options: --tmpfs /var/lib/postgresql/data --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./backend
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@v5
|
||||
with:
|
||||
enable-cache: true
|
||||
cache-dependency-glob: "backend/uv.lock"
|
||||
|
||||
- name: Restore certificates
|
||||
uses: christopherHX/gitea-download-artifact@v4
|
||||
with:
|
||||
name: ssl-certs
|
||||
path: certs/
|
||||
|
||||
- name: Setup Environment
|
||||
run: |
|
||||
cp ../.env.example ../.env
|
||||
uv sync
|
||||
if [ "$GITEA_ACTIONS" = "true" ]; then
|
||||
export DB_HOST="postgres"
|
||||
export DB_PORT="5432"
|
||||
else
|
||||
export DB_HOST="127.0.0.1"
|
||||
export DB_PORT="5442"
|
||||
fi
|
||||
export DB_PASSWORD='password123'
|
||||
export DB_NAME="piku_test"
|
||||
export DB_USER="test"
|
||||
|
||||
- name: Lint & Test
|
||||
run: |
|
||||
|
||||
|
||||
uv run ruff check
|
||||
uv run python manage.py test
|
||||
|
||||
frontend:
|
||||
name: Frontend CI
|
||||
@@ -37,10 +94,10 @@ jobs:
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
|
||||
- name: Restore certificates
|
||||
uses: actions/cache/restore@v4
|
||||
uses: christopherHX/gitea-download-artifact@v4
|
||||
with:
|
||||
path: certs
|
||||
key: certs-${{ runner.os }}-${{ github.sha }}
|
||||
name: ssl-certs
|
||||
path: certs/
|
||||
|
||||
- name: Install dependencies
|
||||
run: bun install --frozen-lockfile
|
||||
@@ -56,69 +113,32 @@ jobs:
|
||||
- name: Unit Tests
|
||||
run: bun run test
|
||||
|
||||
backend:
|
||||
name: Backend CI
|
||||
runs-on: ubuntu-latest
|
||||
needs: setup-environment
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
env:
|
||||
POSTGRES_DB: piku
|
||||
POSTGRES_USER: user
|
||||
POSTGRES_PASSWORD: password123
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./backend
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@v5
|
||||
with:
|
||||
enable-cache: true
|
||||
cache-dependency-glob: "backend/uv.lock"
|
||||
|
||||
- name: Restore certificates
|
||||
uses: actions/cache/restore@v4
|
||||
with:
|
||||
path: certs
|
||||
key: certs-${{ runner.os }}-${{ github.sha }}
|
||||
|
||||
- name: Setup Environment
|
||||
run: |
|
||||
cp ../.env.example ../.env
|
||||
uv sync
|
||||
|
||||
- name: Lint & Test
|
||||
run: |
|
||||
uv run ruff check
|
||||
uv run python manage.py test
|
||||
|
||||
e2e:
|
||||
name: E2E Tests
|
||||
runs-on: ubuntu-latest
|
||||
needs: setup-environment
|
||||
# Skipping on Gitea pushes until cache server is configured
|
||||
if: github.server_url == 'https://github.com' || github.event_name == 'pull_request'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Restore Certificates
|
||||
uses: actions/cache/restore@v4
|
||||
uses: christopherHX/gitea-download-artifact@v4
|
||||
with:
|
||||
path: certs
|
||||
key: certs-${{ runner.os }}-${{ github.sha }}
|
||||
name: ssl-certs
|
||||
path: certs/
|
||||
|
||||
- name: Setup Tools
|
||||
uses: astral-sh/setup-uv@v5
|
||||
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
|
||||
|
||||
- name: Cache Playwright
|
||||
id: playwright-cache
|
||||
uses: actions/cache@v4
|
||||
# Disable cache when not using GitHub Actions because the runner spends ~3mins trying to upload the cache and failing
|
||||
# TODO: setup cache server in Gitea
|
||||
if: github.server_url == 'https://github.com'
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.cache/ms-playwright
|
||||
key: ${{ runner.os }}-playwright-${{ hashFiles('frontend/bun.lock') }}
|
||||
@@ -140,7 +160,7 @@ jobs:
|
||||
|
||||
- name: Upload Playwright Report
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: christopherHX/gitea-upload-artifact@v4
|
||||
with:
|
||||
name: playwright-report
|
||||
path: frontend/playwright-report/
|
||||
|
||||
Reference in New Issue
Block a user