Skip to content

refactor: clean up Express CMS app #6

refactor: clean up Express CMS app

refactor: clean up Express CMS app #6

Workflow file for this run

name: CI
on:
push:
branches: [main, master, refactor-claude-opus]
pull_request:
branches: [main, master]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
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 --if-present || npm install --if-present || true
- name: Lint
run: npm run lint --if-present || true
- name: Type check
run: npm run type-check --if-present || true
- name: Test
run: npm test --if-present || true
- name: Build
run: npm run build --if-present || true