Skip to content

feat(release): v2.5.0 - light mode support, performance, animations, … #35

feat(release): v2.5.0 - light mode support, performance, animations, …

feat(release): v2.5.0 - light mode support, performance, animations, … #35

Workflow file for this run

name: Checkpoint CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
name: Validate Version & Build
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Verify SemVer consistency
run: npm run version:check
- name: Build frontend
run: npm run build