Skip to content

chore: enforce version sync in release workflows #24

chore: enforce version sync in release workflows

chore: enforce version sync in release workflows #24

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm run check:version-sync
- run: npm run lint
- run: npm run typecheck
- run: npm run test
- run: npm run test:integration
- run: npm run test:e2e