Skip to content

fix: remove _redirects causing redirect loop, remove broken social links #15

fix: remove _redirects causing redirect loop, remove broken social links

fix: remove _redirects causing redirect loop, remove broken social links #15

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build all packages
run: npm run build
- name: Run tests
run: npm run test
- name: Type check
run: npm run typecheck
- name: Lint
run: npm run lint
security-scan:
runs-on: ubuntu-latest
needs: build-and-test
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run npm audit (production only)
run: npm audit --omit=dev
- name: Run E2E tests
run: node e2e-test.mjs