Skip to content

chore(deps-dev): bump @semantic-release/changelog from 6.0.3 to 7.0.0 #339

chore(deps-dev): bump @semantic-release/changelog from 6.0.3 to 7.0.0

chore(deps-dev): bump @semantic-release/changelog from 6.0.3 to 7.0.0 #339

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci --no-audit
- name: Build
run: npm run build
- name: Type check
run: npm run typecheck
- name: Run autotests
run: npm test
- name: Verify build output
run: |
if [[ ! -d "dist" ]]; then
echo "Build failed: dist directory not found"
exit 1
fi
echo "Build verification passed"