Skip to content

fix(cors): update CORS headers to allow dynamic origins #27

fix(cors): update CORS headers to allow dynamic origins

fix(cors): update CORS headers to allow dynamic origins #27

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- name: Install deps
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test -- --run
- name: Build
run: pnpm build