Skip to content

docs: Add comprehensive release documentation #3

docs: Add comprehensive release documentation

docs: Add comprehensive release documentation #3

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_call:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
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: Build project
run: npm run build
- name: Run linter
run: npm run lint
- name: Run tests
run: npm run test
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: |
dist/
index.html
favicon.svg
Demo/
retention-days: 7
- name: Check build output
run: |
echo "Checking build output..."
ls -la dist/
test -f dist/output.css || exit 1
test -d dist/ || exit 1
echo "Build verification successful!"