Skip to content

Fix for the proxy error in production #85

Fix for the proxy error in production

Fix for the proxy error in production #85

Workflow file for this run

# Validates Pull Requests
name: Pre-merge
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.15.0
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint and format check
run: |
pnpm lint
pnpm format:check
- name: Type check
run: pnpm typecheck
- name: Run tests
run: pnpm test
- name: Build test
run: pnpm build