fix(nginx): use $http_host instead of $host for proxy host header #22
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: Lint Check | |
| on: | |
| push: | |
| branches: [ 'main' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install dependencies | |
| working-directory: backend | |
| run: | | |
| uv sync --group dev | |
| - name: Lint backend | |
| working-directory: backend | |
| run: make lint | |
| lint-frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Use pinned pnpm version | |
| run: corepack prepare pnpm@10.26.2 --activate | |
| - name: Install frontend dependencies | |
| run: | | |
| cd frontend | |
| pnpm install --frozen-lockfile | |
| - name: Check frontend formatting | |
| run: | | |
| cd frontend | |
| pnpm format | |
| - name: Run frontend linting | |
| run: | | |
| cd frontend | |
| pnpm lint | |
| - name: Check TypeScript types | |
| run: | | |
| cd frontend | |
| pnpm typecheck | |
| - name: Build frontend | |
| run: | | |
| cd frontend | |
| BETTER_AUTH_SECRET=local-dev-secret pnpm build |