Skip to content

Update normalization of different spellings, add a way to add differe… #19

Update normalization of different spellings, add a way to add differe…

Update normalization of different spellings, add a way to add differe… #19

Workflow file for this run

name: Release Gates
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
quality-gates:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up pnpm
uses: pnpm/action-setup@v5
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check unused files & deps (knip)
run: pnpm knip
- name: Lint
run: pnpm lint
- name: Test (full suite)
run: pnpm test
- name: Build production bundle
run: pnpm build