Skip to content

Fix: Remove insecure proxy fallback and prevent IP spoofing vulnerability #475

Fix: Remove insecure proxy fallback and prevent IP spoofing vulnerability

Fix: Remove insecure proxy fallback and prevent IP spoofing vulnerability #475

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install Dependencies
run: npm ci --legacy-peer-deps
- name: Run Linter
run: npm run lint
- name: Run Tests with Coverage
run: npx vitest run --coverage
env:
NODE_ENV: test
SUPABASE_JWT_SECRET: dummy-secret-for-ci
FRONTEND_URL: http://localhost:5173